I'm also trying to figure out how to reverse proxy the Everything HTTP server behind nginx, but custom images/CSS turn up 404 when I manage to successfully reverse proxy the server using:
Code: Select all
server {
listen 80 default_server;
server_name _;
location /search/ {
proxy_pass http://localhost:8085/;
}
}