authelia/internal/suites/example/compose/authelia/resources/nginx.conf
Clément Michaud 29325ab273
Fix CSP not propagated in default handler. (#915)
Also:
- not hide the CSP header in the dist version of suites.
- Fix CSP errors due to FontAwesome loading stylesheets dynamically.
2020-04-26 00:12:55 +02:00

20 lines
341 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
listen 3000;
resolver 127.0.0.11 ipv6=off;
set $backend_endpoint https://authelia-backend:9091;
location / {
proxy_set_header Host $http_host;
proxy_pass $backend_endpoint;
}
}
}