1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/nifi/nginx.conf

30 lines
1000 B
Nginx Configuration File
Raw Normal View History

2019-02-26 12:51:53 +02:00
server {
listen 80;
server_name nifi.example.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name nifi.example.com;
ssl_certificate ssl/example/example.com.crt;
ssl_certificate_key ssl/example/example.com.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
location / {
proxy_set_header X-ProxyScheme https;
proxy_set_header X-ProxyHost $host;
proxy_set_header X-ProxyPort 443;
2021-12-16 08:54:43 +02:00
proxy_set_header X-ProxyContextPath "";
2019-02-26 12:51:53 +02:00
proxy_pass http://127.0.0.1:8080;
}
2021-12-16 05:41:31 +02:00
location /nifi-registry {
proxy_set_header Origin http://172.16.1.9:18080;
proxy_set_header X-ProxyScheme https;
proxy_set_header X-ProxyHost $host;
proxy_set_header X-ProxyPort 443;
2021-12-16 08:54:43 +02:00
proxy_set_header X-ProxyContextPath "";
2021-12-16 05:41:31 +02:00
proxy_pass http://127.0.0.1:18080;
}
2019-02-26 12:51:53 +02:00
}