Archived
1
0

add example nginx config, probably works

This commit is contained in:
jeff 2015-10-03 10:14:25 -04:00
parent 7727fc76f8
commit bc81c8e251

View File

@ -0,0 +1,12 @@
# using srndv2 behind nginx with a prefix
# make sure to set prefix=/nntpchan/ for section frontend in srnd.ini
server {
listen 80;
location /nntpchan/ {
client_max_body_size 50M;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
rewrite ^/nntpchan/(.*) /$1;
proxy_pass http://[::1]:18000/;
}
}