After the JetPatch full proxy installation only.
What are we doing in this article?
We will use know error code 444 "CONNECTION CLOSED WITHOUT RESPONSE" to block the login page of JetPAtch from the proxy connection only!
Why?
To prevent login/access from the public to JetPatch software.
1. Edit the file "/etc/nginx/conf.d/intigua.conf" and add the lines
location ~* /vmanage-server/login\.htm {
return 444;
}
immediately after
server {
listen 443 ssl;
Overview of a good configuration:
THE PLACE OF THE BRACKETS " } " ARE CRITICS
2. Restart Nginx
systemctl restart nginx
or reload it
nginx -t && nginx -s reload
Comments
0 comments
Article is closed for comments.