Last active
May 15, 2019 17:35
-
-
Save waltertschwe/01fb802049d04951bd48f555b3d4808e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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