23 lines
393 B
Plaintext
23 lines
393 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;
|
|
include default_proxy.conf;
|
|
}
|
|
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
include ssl.conf;
|
|
include ldap.conf;
|
|
|
|
} |