What is the main reason to use the port 8083 to login to control panel?
In a server I don’t have full access it’s blocked and that is a pain. I don’t see the reason no to use 80 or 443 so that we don’t need to specify port at all on the browser. Is there an easy way to just use a subdomain to login for example? I think that would be the most logical by default unless there is a strong reason not to do this.
#=======================================================================#
# Default Web Domain Template #
# DO NOT MODIFY THIS FILE! CHANGES WILL BE LOST WHEN REBUILDING DOMAINS #
#=======================================================================#
server {
listen %ip%:%proxy_port%;
server_name %domain_idn% %alias_idn%;
index index.php index.html index.htm;
include %home%/%user%/conf/web/%domain%/nginx.forcessl.conf*;
location / {
return 301 https://%domain_idn%/;
}
location /error/ {
alias %home%/%user%/web/%domain%/document_errors/;
}
location @fallback {
proxy_pass https://%ip%:8083;
}
location ~ /\.(?!well-known\/|file) {
deny all;
return 404;
}
include /etc/nginx/conf.d/phpmyadmin.inc*;
include /etc/nginx/conf.d/phppgadmin.inc*;
include %home%/%user%/conf/web/%domain%/nginx.conf_*;
}
if you are having trouble with the port, replace in the template: %ip% with localhost