This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2015-10-03 10:14:25 -04:00
|
|
|
# using srndv2 behind nginx with a prefix
|
|
|
|
|
# make sure to set prefix=/nntpchan/ for section frontend in srnd.ini
|
|
|
|
|
server {
|
|
|
|
|
listen 80;
|
2015-10-03 10:31:32 -04:00
|
|
|
location /nntpchan/(.*) {
|
2015-10-03 10:14:25 -04:00
|
|
|
client_max_body_size 50M;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2015-10-03 10:31:32 -04:00
|
|
|
proxy_pass http://[::1]:18000/$1;
|
2015-10-03 10:14:25 -04:00
|
|
|
}
|
|
|
|
|
}
|