Problem mit Subdomain

Blut-Svente

New Member
Hallo zusammen,

ich habe gerade in ISPConfig eine Website mit Subdomain (mainwp.xx.media) angelegt. Aber leider zeigt Sie diesmal auf /var/www/html
Das einzige besondere ist die Domain sie hat nur 2 Zeichen :

xx.media (das ist natürlich nicht die Richtige, aber es ist .media)

lege ich eine Website mit anderen Domains (mainwp.blabla.de) an, funktioniert es sofort.

Hier die mainwp.xx.media.vhost (wie gesagt frisch angelegt)


<Directory /var/www/mainwp.xx.media>
AllowOverride None
Require all denied
</Directory>

<VirtualHost *:80>


DocumentRoot /var/www/mainwp.xx.media/web

ServerName mainwp.xx.media
ServerAlias client2-web23
ServerAdmin webmaster@mainwp.xx.media


ErrorLog /var/log/ispconfig/httpd/mainwp.xx.media/error.log

Alias /error/ "/var/www/mainwp.xx.media/web/error/"
ErrorDocument 400 /error/400.html
ErrorDocument 401 /error/401.html
ErrorDocument 403 /error/403.html
ErrorDocument 404 /error/404.html
ErrorDocument 405 /error/405.html
ErrorDocument 500 /error/500.html
ErrorDocument 502 /error/502.html
ErrorDocument 503 /error/503.html


<Directory /var/www/mainwp.xx.media/web>
# Clear PHP settings of this website
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler None
</FilesMatch>
Options +SymlinksIfOwnerMatch
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/clients/client2/web23/web>
# Clear PHP settings of this website
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler None
</FilesMatch>
Options +SymlinksIfOwnerMatch
AllowOverride All
Require all granted
</Directory>




# suexec enabled
<IfModule mod_suexec.c>
SuexecUserGroup web23 client2
</IfModule>
# php as fast-cgi enabled
# For config options see: http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html
<IfModule mod_fcgid.c>
FcgidIdleTimeout 300
FcgidProcessLifeTime 3600
# FcgidMaxProcesses 1000
FcgidMaxRequestsPerProcess 5000
FcgidMinProcessesPerClass 0
FcgidMaxProcessesPerClass 10
FcgidConnectTimeout 3
FcgidIOTimeout 600
FcgidBusyTimeout 3600
FcgidMaxRequestLen 1073741824
</IfModule>
<Directory /var/www/mainwp.xx.media/web>
<FilesMatch "\.php[345]?$">
SetHandler fcgid-script
</FilesMatch>
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php3
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php4
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php5
Options +ExecCGI
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/clients/client2/web23/web>
<FilesMatch "\.php[345]?$">
SetHandler fcgid-script
</FilesMatch>
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php3
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php4
FCGIWrapper /var/www/php-fcgi-scripts/web23/.php-fcgi-starter .php5
Options +ExecCGI
AllowOverride All
Require all granted
</Directory>



# add support for apache mpm_itk
<IfModule mpm_itk_module>
AssignUserId web23 client2
</IfModule>

<IfModule mod_dav_fs.c>
# Do not execute PHP files in webdav directory
<Directory /var/www/clients/client2/web23/webdav>
<ifModule mod_security2.c>
SecRuleRemoveById 960015
SecRuleRemoveById 960032
</ifModule>
<FilesMatch "\.ph(p3?|tml)$">
SetHandler None
</FilesMatch>
</Directory>
DavLockDB /var/www/clients/client2/web23/tmp/DavLock
# DO NOT REMOVE THE COMMENTS!
# IF YOU REMOVE THEM, WEBDAV WILL NOT WORK ANYMORE!
# WEBDAV BEGIN
# WEBDAV END
</IfModule>




</VirtualHost>
 

Till

Administrator
Der Webserver verweist auf /var/www/html wenn es keine passende website zu der anfrage gibt. Das kann bedeuten dass Du Dich in der Domain in ISPConfig oder dem Browser vertippt hast oder aber dass Du mit einem nicht konfigurierten Protokoll zugreifst, z.B. mit https:// aber du hast ja bisher ssl für die website nicht aktiviert und/oder kein SSL cert angelegt.
 

Werbung

Top