hey,
Am 28.05.2013 22:14, schrieb Heiko Schlittermann:
Aha. Da ja normalerweise Dein Zertifikat auch auf einem anderen Port als dem Port 80 läuft, sollte Deine Konfiguration, dieses normale HTTP betreffend ja noch gehen.
Nope. Das ssl ist mir mitlweile egal. ich will einfach nur wieder das die domains gehen. Ich hab meines wissens den stand der vor der spielerei vorherschte. Und mitlweile alles raugekippt und alle .conf's und vHost conf's zig mal gelesen und mit zig anderen Anleitung versucht die domains von Grund auf wieder neu zu erstellen. Ohne erfolg. bei allein domains lande ich immer auf /var/www
Kannst Du die Konfig posten? Aber möglichst nicht obfuscaten, dann dann
da ich nicht weiß was genau werf ich mal alles rein (um Komentare gekürzt und domainname-standardisiert). Das müsste eigentlich alles sein was derzeit wichtig ist.
************************* /etc/apache2/apache2.conf *************************
ServerRoot "/etc/apache2"
LockFile /var/lock/apache2/accept.lock
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule mpm_prefork_module> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule>
<IfModule mpm_worker_module> StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule>
User ${APACHE_RUN_USER} Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess
<Files ~ "^.ht"> Order allow,deny Deny from all </Files>
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel warn
Include /etc/apache2/mods-enabled/*.load Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/httpd.conf
Include /etc/apache2/ports.conf
LogFormat "%v:%p %h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" vhost_combined LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined LogFormat "%h %l %u %t "%r" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent
CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
Include /etc/apache2/conf.d/ Include /etc/apache2/sites-enabled/
************************* /etc/apache2/httpd.conf ************************* <Files ~ ".inc$"> Order allow,deny Deny from all </Files>
AddType application/x-httpd-php .php .html AddType application/x-javascript .js
************************* /etc/apache2/httpd.conf ************************* NameVirtualHost *:80 Listen 80
<IfModule mod_ssl.c> # SSL name based virtual hosts are not yet supported, therefore no # NameVirtualHost statement here #Listen 443 </IfModule>
************************************** /etc/apache2/sites-enabled/000-default ************************************** NameVirtualHost *:80 <VirtualHost *:80> DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None Options -Indexes Allow from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory “/usr/lib/cgi-bin”> AllowOverride None Options ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog /var/log/apache2/error.log LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On Alias /doc/ “/usr/share/doc/” <Directory “/usr/share/doc/”> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> </VirtualHost>
***************************************** /etc/apache2/sites-enabled/meinedomain.de ***************************************** <VirtualHost *> ServerAdmin root@meinedomain.de ServerName meinedomain.de ServerAlias *.meinedomain.de *.meinedomain.DE DocumentRoot /var/www/meinedomain ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Location /cgi-bin> Options +ExecCGI </Location> ErrorLog /var/log/apache2/error_meinedomain.de.log </VirtualHost>
Danke und beste Grüße Robert