cross-posting/conf/nginx/crossposting.conf
2023-01-29 16:43:15 +05:00

15 lines
459 B
Plaintext

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;
}
}