Is it possible to change port :8080 in /panel? So you can open ispconfig 3 with http://domein.nl/panel
i think you can edit /etc/apache2/sites-enabled/000-ispconfig.vhost Not sure if this will be overwritten on update.
oke, soo i have change the file but it dont work...somebody who know what i do wrong? Original: Code: Listen 8080 NameVirtualHost *:8080 <VirtualHost _default_:8080> ServerAdmin webmaster@localhost <IfModule mod_fcgid.c> DocumentRoot /var/www/ispconfig/ SuexecUserGroup ispconfig ispconfig <Directory /var/www/ispconfig/> Options Indexes FollowSymLinks MultiViews +ExecCGI AllowOverride AuthConfig Indexes Limit Options FileInfo AddHandler fcgid-script .php FCGIWrapper /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter .php Order allow,deny Allow from all </Directory> </IfModule> Change: Code: Listen 8080 NameVirtualHost panel.domein.nl <VirtualHost panel.domein.nl> ServerAdmin [email protected] <IfModule mod_fcgid.c> DocumentRoot /var/www/ispconfig/ SuexecUserGroup ispconfig ispconfig <Directory /var/www/ispconfig/> Options Indexes FollowSymLinks MultiViews +ExecCGI AllowOverride AuthConfig Indexes Limit Options FileInfo AddHandler fcgid-script .php FCGIWrapper /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter .php Order allow,deny Allow from all </Directory> </IfModule>
not sure, maybe Code: Listen 8080 NameVirtualHost panel.domein.nl:8080 <VirtualHost panel.domein.nl:8080> ...
what i did: inside the panel: create subdomain with Host: panel Domain: domain.nl Redirect Type: No Flag Redirect Path: https://hostname.domain.nl:8080 (or http://domain.nl:8080)
this file will be overwritten on update. if you want to change "this" file. create a new one (for example /etc/apache2/sites-available/ispconfig-my.vhost) and do the changes there. next change the symlink /etc/apache2/sites-enabled/000-ispconfig and let it point to YOUR file instead of the old one. this will work, because we always update the file itself, but NOT the symlink (if there is one) Hope, this helps!