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.
11 lines
331 B
11 lines
331 B
2 years ago
|
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;
|
||
|
}
|
||
|
}
|