VestaCP Panel Port Redirect to Subdomain
Posted: Tue Mar 29, 2016 1:38 pm
I've successfully got VestaCP panel running on panel.domain.com However, phpmyadmin and roundcube both go to "Page not found". It's a black page with a big space rock. I'm guessing it has something to do with the links. I've added the following into my nginx.conf in /home/<user>/conf/web
server {
listen 108.xx.xx.xxx:443;
server_name panel.domain.com;
root /var/www/ghost;
index index.html index.htm;
location / {
proxy_pass https://127.0.0.1:8083;
}
}
As i said, it works, just not completely.
server {
listen 108.xx.xx.xxx:443;
server_name panel.domain.com;
root /var/www/ghost;
index index.html index.htm;
location / {
proxy_pass https://127.0.0.1:8083;
}
}
As i said, it works, just not completely.