shell-things/etc/nginx/sites-enabled/rproxy

17 lines
300 B
Plaintext
Raw Normal View History

2014-12-27 10:09:00 +01:00
server {
listen 80;
listen [::]:80;
listen 443;
listen [::]:443;
server_name something.example.org;
# NOTE: For X-Real-IP & X-Forwarded-For see ../conf.d/rproxy.conf
# Behind CloudFlare see ../conf.d/cloudflare.conf
location / {
proxy_pass http://localhost:8080/;
}
}