Hello,
I am configuring a reverse proxy with NGINX in order to have a nice URL to access the server manager.
Everything almost works BUT … some parts of the manager are not well displayed. For example, I cannot access the server options, I click but the menu is not displayed. Another example, the remaining time in the current session is not displayed.
For information, I have another application which pages are displayed correctly.
If you have any idea on what to do to fix this, please let me know ![]()
Here is my NGINX configuration for ACSM:
server {
listen 80;
server_name subdomain.domain.com;
location / {
proxy_set_header Host $host;
proxy_pass http://X.X.X.X:Y;
proxy_redirect off;
}
}