Code: Alles auswählen
Datei nicht gefunden
Das ausgewählte Dokument wurde auf dem Server nicht gefunden.
Ich weiß echt nicht mehr weiter, habe schon alles Probiert was mir eingefallen ist.
Ich nutze Linux Debian-80-jessie-64-minimal
Apache2
OC 8.1.3
anzahcloud.conf
Code: Alles auswählen
<VirtualHost 176.9.90.67:80>
ServerName anzahcloud.de
ServerAdmin tealk@anzahcraft.de
DocumentRoot /var/www/owncloud/
<Directory /var/www/owncloud/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
Satisfy Any
</Directory>
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Code: Alles auswählen
<IfModule mod_ssl.c>
<VirtualHost 176.9.90.67:443>
ServerName anzahcloud.de
ServerAdmin tealk@anzahcraft.de
DocumentRoot /var/www/owncloud/
<Directory /var/www/owncloud/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
Satisfy Any
</Directory>
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLCertificateFile /etc/letsencrypt/live/www.anzahcloud.de/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/www.anzahcloud.de/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>