Last active
December 4, 2016 19:08
-
-
Save anddam/ec6ee420ee2ab4fe9563698e40b206e5 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
2016/12/04 20:06:22 [crit] 31075#31075: *1 connect() to unix:/home/foo/source/foo.sock failed (2: No such file or directory) while connecting to upstream, client: 127.0.0.1, server: localhost, request: "GET / HTTP/1.1", upstream: "uwsgi://unix:/home/foo/source/foo.sock:", host: "foo" |
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; | |
server_name foo.local; | |
location / { | |
include uwsgi_params; | |
uwsgi_pass unix:/home/foo/source/foo.sock; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment