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.

17 lines
306 B

server {
listen 80;
server_name 161.35.151.134;
location /static {
alias /var/www/Tasks_App/public/static;
}
location /uploads {
alias /var/www/Tasks_App/public/uploads;
}
location / {
include proxy_params;
proxy_pass http://localhost:8000/;
}
}