Changing web interface port
Changing web interface port
Is it possible to do this with Vesta?
Re: Changing web interface port
Yes
You can change vesta web interface port
/usr/local/vesta/nginx/conf/nginx.conf
listen 8083; select your port
You can change vesta web interface port
/usr/local/vesta/nginx/conf/nginx.conf
Code: Select all
# Vhost
server {
listen 8083;
server_name _;
root /usr/local/vesta/web;
charset utf-8;
Code: Select all
service vesta restart