46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
server_name patrick.luna.fet.at;
|
|
include ssl.conf;
|
|
include ldap.conf;
|
|
client_max_body_size 1000M;
|
|
location / {
|
|
include secure.conf;
|
|
include proxy.conf;
|
|
proxy_pass http://lunochod:8001;
|
|
proxy_set_header Authorization "";
|
|
proxy_set_header REMOTE_USER $remote_user;
|
|
#proxy_pass_header content-security-policy; ##pet, 3.1.22
|
|
}
|
|
|
|
location /dev {
|
|
include proxy.conf;
|
|
proxy_pass http://lunochod:8001;
|
|
# include snippets/proxy_header.conf;
|
|
proxy_set_header Authorization "";
|
|
proxy_set_header REMOTE_USER $remote_user;
|
|
}
|
|
|
|
location /etherpad {
|
|
include proxy.conf;
|
|
proxy_pass http://lunochod:8001;
|
|
# include snippets/proxy_header.conf;
|
|
proxy_set_header Authorization "";
|
|
proxy_set_header REMOTE_USER $remote_user;
|
|
add_header Content-Security-Policy "default-src 'self' 'unsafe-inline' 'unsafe-eval'";
|
|
}
|
|
|
|
location /admin {
|
|
include proxy.conf;
|
|
proxy_pass http://lunochod:8001;
|
|
# include snippets/proxy_header.conf;
|
|
proxy_set_header Authorization "";
|
|
proxy_set_header REMOTE_USER $remote_user;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|