Skip to content

Instantly share code, notes, and snippets.

@waltertschwe
Last active May 15, 2019 17:35
Show Gist options
  • Save waltertschwe/01fb802049d04951bd48f555b3d4808e to your computer and use it in GitHub Desktop.
Save waltertschwe/01fb802049d04951bd48f555b3d4808e to your computer and use it in GitHub Desktop.
server {
listen 80;
listen [::]:80;
server_name profiles.themuse.com www.profiles.themuse.com;
location / {
include proxy_params;
proxy_pass http://unix:/opt/src/profiles/profiles.sock;
}
location /static {
autoindex on;
alias /opt/src/profiles/profiles/staticfiles;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment