Member since
01-16-2019
2
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2007 | 01-17-2019 12:31 PM |
01-17-2019
12:31 PM
According to link Added the CORS filter to the templates/upload endpoint, this is not possible.
... View more
01-16-2019
03:14 PM
Hi all, I have NiFi behind a nginx server proxy, and when I try upload template I recieve HTTP 403. If I access directly I can upload template. Below are my config file nginx. upstream nifi-app {
ip_hash;
server node-01:8443;
server node-02:8443;
}
server {
listen 443 ssl;
server_name nifi-server;
ssl_certificate /etc/nginx/conf.d/cert.pem;
ssl_certificate_key /etc/nginx/conf.d/key.pem;
location /nifi {
proxy_pass https://nifi-app;
proxy_set_header X-ProxyScheme https;
proxy_set_header X-ProxyHost myhost.com;
proxy_set_header X-ProxyPort 443;
proxy_set_header X-ProxyContextPath /;
}
}
Any help will be appreciated
... View more
Labels:
- Labels:
-
Apache NiFi