25 lines
593 B
Plaintext
25 lines
593 B
Plaintext
server {
|
|
listen 80;
|
|
include auto_ssl.conf;
|
|
}
|
|
|
|
# Dieser Server ist der Zugang zur "Nginx config und wird im 2. Openresty Server genutzt"
|
|
server {
|
|
listen 8080;
|
|
set $proxy_host theiaconf;
|
|
set $proxy_port 3000;
|
|
include ldap.conf;
|
|
include secure.conf;
|
|
add_header content-security-policy "default-src 'self' 'unsafe-inline' 'unsafe-eval'";
|
|
add_header content-security-policy-report-only "default-src 'self' 'unsafe-inline' ";
|
|
include default_proxy.conf;
|
|
}
|
|
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
include ssl.conf;
|
|
include secure.conf;
|
|
include ldap.conf;
|
|
|
|
} |