Skip to content

Instantly share code, notes, and snippets.

@tkjaergaard
Last active March 16, 2020 05:59
Show Gist options
  • Select an option

  • Save tkjaergaard/1bfd0071552fe96e5eace8a76dc7491e to your computer and use it in GitHub Desktop.

Select an option

Save tkjaergaard/1bfd0071552fe96e5eace8a76dc7491e to your computer and use it in GitHub Desktop.
default-nginx-config
server {
server_name _ {{domain}};
location / {
proxy_pass http://localhost:{{port}};
}
listen 80 default_server;
listen [::]:80 default_server;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment