mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
29325ab273
Also: - not hide the CSP header in the dist version of suites. - Fix CSP errors due to FontAwesome loading stylesheets dynamically.
20 lines
341 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
} |