v/pol
1
0
mirror of https://github.com/taroved/pol synced 2025-05-18 07:10:09 -07:00
pol/nginx/default.site-example
2016-07-14 11:48:11 -07:00

21 lines
310 B
Plaintext

# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location / {
proxy_pass http://127.0.0.1:8000;
}
location /downloader {
proxy_pass http://127.0.0.1:1234;
}
location /feed {
proxy_pass http://127.0.0.1:1234;
}
}