Skip to content

Commit

Permalink
correct sock and ip
Browse files Browse the repository at this point in the history
  • Loading branch information
interrogator committed Apr 20, 2020
1 parent bbe8c0f commit 2abaf8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buzzword/buzzword_nginx.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# the upstream component nginx needs to connect to
upstream django {
# server unix:///usr/share/buzzword/buzzword/mysite.sock; # for a file socket
# server unix:///tmp/buzzword.sock; # for a file socket
server 127.0.0.1:8001; # for a web port socket (we'll use this first)
}

Expand All @@ -9,7 +9,7 @@ server {
# the port your site will be served on
listen 8000;
# the domain name it will serve for
server_name .example.com; # substitute your machine's IP address or FQDN
server_name 172.23.23.5; # substitute your machine's IP address or FQDN
charset utf-8;

# max upload size
Expand Down

0 comments on commit 2abaf8a

Please sign in to comment.