18 lines
490 B
Plaintext
18 lines
490 B
Plaintext
|
|
server {
|
|
listen 443 ssl ;
|
|
server_name jenkins.nginx.fet.at;
|
|
include ssl.conf;
|
|
set $proxy_host jenkins_01;
|
|
set $proxy_port 8080;
|
|
location / {
|
|
include proxy.conf;
|
|
include ldap.conf;
|
|
proxy_buffering off;
|
|
proxy_max_temp_file_size 0;
|
|
proxy_pass http://$proxy_host:$proxy_port;
|
|
proxy_set_header Authorization "Basic YWRtaW46OGNmMTY5NGU4MTMyNGQ0MjhiMjVmNmEzMGIwZGQyYjA=";
|
|
proxy_pass_header Authorization;
|
|
}
|
|
|
|
} |