Hi,
for test purposes, I´m running vault (0.10.3) with enabled UI on an openstack instance.
This instance can´t be accessed directly ( due to IP adress limits) so we´ve setup a NGinx Proxy in front of it
The current nginx configuration looks like:
server {
listen 80;
server_name myhost.mycompany.net;
...
location ^~ /ui/ {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://192.168.0.13:8200/ui/;
}
# Leave this location block as last block
location / {
root /var/www/html;
}
}
With that setup, I´m getting a 404 because of missing
Which locations are needed to be added to the nginx config, in order to get in properly working?
Later on, I´ll have to expose the vault URL itself somehow in order to be accessible by all clients.
Please note that I´m new to vault - and nginx configuration at all :-)
Thanx for any advice,
Torsten