Nabend,
folgendes Szenario, ich habe auf einem ispCP Produktivsystem openVZ installiert und möchte nun gerne
vpsAdmin nutzen. Dafür habe ich das Panel unter /opt/vpsadmin installiert und wie in der Dokumentation angegeben Symlinks wie folgt eingerichtet:
Code:
ln -s /opt/vpsadmin/index.php /var/www/vpsadmin/index.php
ln -s /opt/vpsadmin/js/ /var/www/vpsadmin/js
ln -s /opt/vpsadmin/template/ /var/www/vpsadmin/template
Nun habe ich eine neue vHost config erstellt "vpsadmin.conf" und wie folgt gefüttert
Code:
<VirtualHost 127.0.0.1:80>
<IfModule suexec_module>
SuexecUserGroup vu2000 vu2000
</IfModule>
ServerAdmin webmaster@meinedomain.de
DocumentRoot /var/www/vpsadmin
ServerName vpsadmin.meinedomain
<Directory /var/www/vpsadmin>
# httpd sub entry PHP support BEGIN.
<IfModule mod_php5.c>
php_admin_flag engine off
</IfModule>
<IfModule mod_fastcgi.c>
RemoveHandler .php
RemoveType .php
</IfModule>
<IfModule mod_fcgid.c>
RemoveHandler .php
RemoveType .php
</IfModule>
# httpd sub entry PHP support END.
Options -Indexes Includes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Aber es will einfach nicht, manchmal taucht ein 500er Fehler auf und manchmal nen 403er Forbidden... Die logs spucken nicht wirklich was taugbares aus... Handler wird wohl auch ausgeführt...
Woran könnte es noch liegen, dass das CP nicht aufgerufen wird? Ach ja, die Symlinks müssen sein, da das CP direkte befehle an openVZ schickt. Sollte aber doch kein Problem sein oder? Funzt ja bei PMA genau nach dem gleichen Prinzip!
Hoffe auf hilfreiche Stellungen!
regards, HxD