This guide shows you how to enable standard web ports for your Enduser panel on the Virtualizor Master server.
Changing ports for Admin panel is not allowed.
1. For Port 80 please create the file /usr/local/emps/etc/nginx/port-80.conf :
listen 80;
2. For Port 443 please create the file /usr/local/emps/etc/nginx/port-443.conf :
listen 443 ssl;
You can find EMPs version using : cat /usr/local/emps/version
3. After making changes in conf file, you will need to restart service assuming no task is active on panel :
systemctl restart virtualizor
To auto redirect port 80 to port 443 (i.e http to https) add the following content to the file /usr/local/emps/etc/nginx/port-80.conf
listen 80;
server_name YOUR_DOMAIN;
return 301 https://$host$request_uri;
After making changes in conf file, you will need to restart service assuming no task is active on panel :
systemctl restart virtualizor