Advertisement
CristianeNaves

nginx_conf

Nov 3rd, 2022
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.21 KB | Software | 0 0
  1. upstream django {
  2.   server        localhost:9001;
  3.   #server        http://ec2-3-85-171-255.compute-1.amazonaws.com:9001/;
  4. }
  5.  
  6. server {
  7.   listen        80;
  8.  
  9.   location / {
  10.     proxy_pass  http://django;
  11.   }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement