small config updates

This commit is contained in:
2021-11-14 08:04:07 +00:00
parent 20d60e36a0
commit 6df24260e2
6 changed files with 45 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{
"workbench.colorTheme": "light"
"workbench.colorTheme": "Default Dark+"
}

View File

@@ -1,5 +1,10 @@
# Anleitung für Proxy Server in der FET
location / {
include proxy.conf;
proxy_buffering off;
proxy_pass http://$proxy_host:$proxy_port;
}
include internal_proxy.conf;

View File

@@ -11,7 +11,7 @@ server {
proxy_buffering off;
proxy_max_temp_file_size 0;
proxy_pass http://$proxy_host:$proxy_port;
proxy_set_header Authorization "Basic YWRtaW46OGNmMTY5NGU4MTMyNGQ0MjhiMjVmNmEzMGIwZGQyYjA=";
#proxy_set_header Authorization "Basic YWRtaW46OGNmMTY5NGU4MTMyNGQ0MjhiMjVmNmEzMGIwZGQyYjA=";
proxy_pass_header Authorization;
}

18
andis/jenkins2.fet.at Normal file
View File

@@ -0,0 +1,18 @@
server {
listen 443 ssl ;
server_name jenkins2.nginx.fet.at;
include ssl.conf;
set $proxy_host triton20;
set $proxy_port 49155;
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 YWRtaW46N2RmMGFkMDJjOTQ3NDJlYWJlZmJkZTFhNzMwOWMyYWQ=";
proxy_pass_header Authorization;
}
}

View File

@@ -75,5 +75,6 @@ server {
include /etc/nginx/conf.d/fet.at/*.conf;
include /etc/nginx/conf.d/dev/*.conf;
include /etc/nginx/conf.d/dev/*.at;
include /etc/nginx/conf.d/andis/*.at;
include /etc/nginx/conf.d/fachschaften.at/*.at;

18
dev/docker.nginx.fet.at Normal file
View File

@@ -0,0 +1,18 @@
server {
listen 443 ssl;
server_name docker.triton2.fet.at;
include ssl.conf;
client_max_body_size 1000M;
include ldap.conf;
set $proxy_host rancher;
set $proxy_port 5000;
location / {
include proxy.conf;
include secure.conf;
proxy_buffering off;
proxy_pass http://$proxy_host:$proxy_port;
client_max_body_size 1000M;
}
}