bazzar/config/rauth.nginx
2024-08-03 05:48:14 +02:00

12 lines
274 B
Nginx Configuration File

server {
listen 80;
server_name rauthy.lvh;
location ~ / {
proxy_pass http://rauthy:8301;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}