v/pol
1
0
mirror of https://github.com/taroved/pol synced 2025-05-16 22:30:09 -07:00
pol/nginx/default.site-example
Alexandr Nesterenko 06f57064ac user agent + feed1
2016-07-24 06:58:36 -07:00

24 lines
375 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;
}
location /feed1 {
proxy_pass http://127.0.0.1:1234;
}
}