22 lines
364 B
Plaintext
22 lines
364 B
Plaintext
server {
|
|
listen 80;
|
|
include get_auto_ssl.conf;
|
|
}
|
|
|
|
# Dieser Server ist der Zugang zur "Nginx config und wird im 2. Openresty Server genutzt"
|
|
server {
|
|
listen 8080;
|
|
|
|
set $host theiaconf;
|
|
set $port 3000;
|
|
include ldap.conf;
|
|
include default_proxy.conf;
|
|
}
|
|
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
include auto_ssl.conf;
|
|
include ldap.conf;
|
|
|
|
} |