Overview
This article explains how to disable the JetProxy web console to prevent unauthorized public access to the login page.
| Important: This procedure applies after the JetProxy installation only. |
Procedure
Step 1: Edit the NGINX Configuration
- Edit the file /etc/nginx/conf.d/intigua.conf and add the following block immediately after the server { / listen 443 ssl; line:
location ~* /vmanage-server/login { return 444; } |
- The resulting configuration should look like this:
server { listen 443 ssl;
location ~* /vmanage-server/login { return 444; }
# ... rest of configuration ... } |
| Important: The placement of the closing brackets “}” is critical. Ensure they are correctly positioned as shown above. |
Step 2: Apply the Configuration
- Restart NGINX to apply the changes:
| systemctl restart nginx |
- Alternatively, you can test and reload the configuration without a full restart:
| nginx -t && nginx -s reload |
Comments
0 comments
Article is closed for comments.