bazzar/config/rauth.nginx
2024-06-26 16:34:29 +02:00

12 lines
274 B
Nginx Configuration File

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