bazzar/config/rauth.nginx

12 lines
274 B
Plaintext
Raw Permalink Normal View History

2024-06-26 16:34:29 +02:00
server {
listen 80;
server_name rauthy.lvh;
location ~ / {
2024-08-03 05:48:14 +02:00
proxy_pass http://rauthy:8301;
2024-06-26 16:34:29 +02:00
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}