Skip to content

Latest commit

 

History

History
24 lines (12 loc) · 310 Bytes

velo-omsk.org

File metadata and controls

24 lines (12 loc) · 310 Bytes

server {

listen 80;

server_name .velo-omsk.org;

location / {

proxy_pass http://localhost:8080/;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

}

location ~ /static/assets/(.*)$ {

alias /home/velo-user/assets/$1;

}

}