You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
459 B
15 lines
459 B
server { |
|
listen 8989; |
|
server_name zakonvremeni.ru; |
|
access_log /var/log/nginx/crossposting/access.log; |
|
error_log /var/log/nginx/crossposting/error.log error; |
|
root /home/redex2000/crossposting/backend/current; |
|
|
|
location / { |
|
proxy_pass http://localhost:8888; |
|
} |
|
location /static/ { |
|
alias /var/www/crossposting/backend/current/static/; |
|
expires max; |
|
} |
|
} |