Hi, I can not connect with phpMyadmin here https://mydomain:8080/phpmyadmin (default link from ISPconfig control panel) but I can do it here: http://vps25670.ovh.net:8081/phpmyadmin. Any ideas? Regards, Joan
Thats correct, as phpmyadmin runs on port 8081 on nginx. All you have to do is to set the correct phpmyadmin url under System > interface config in ispconfig.
I can get: http://vps25670.ovh.net:8081/phpmyadmin/ But I think access without security enabled (https) is not a good practice, isn't it? I can NOT access here: https://vps25670.ovh.net:8081/phpmyadmin/ (maybe https is not using port 8081, is it? For example, ISPConfig uses this URL: https://vps25670.ovh.net:8080 But https://vps25670.ovh.net:8080/phpmyadmin/ get 404 error. Any ideas?
Not sure if this is a correct fix be here is what I did to solve a similar issue. In CP goto server config. Then web at top. Open up section of Apps Vhost section. Changed the Apps-vhost Port to : Code: 8081 ssl; ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt; ssl_certificate_key /usr/local/ispconfig/interface/ssl/ispserver.key I set apps-vhost Domain to abc.myserver.com Not sure if that is correct way but it worked.
Code: ssl on; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt; ssl_certificate_key /usr/local/ispconfig/interface/ssl/ispserver.key; # redirect to https if accessed with http error_page 497 https://$host:8081$request_uri;