Advertisement
Guest User

Untitled

a guest
Jul 15th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ---owncloud---
  2. <VirtualHost *:443>
  3.         ServerName www.hashtagsystem.de
  4.         ServerAdmin webmaster@localhost
  5.         SSLEngine on
  6.         SSLCertificateFile /etc/ssl/certs/apache.crt
  7.         SSLCertificateKeyFile /etc/ssl/private/apache.key
  8.  
  9.         DocumentRoot /var/www/owncloud/
  10.         <Directory /var/www/owncloud/>
  11.                 Options Indexes FollowSymLinks MultiViews
  12.                 AllowOverride All
  13.                 Order allow,deny
  14.                 allow from all
  15.         </Directory>
  16.         ErrorLog /var/log/apache2/error.log
  17.         LogLevel warn
  18.         CustomLog /var/log/apache2/access.log combined
  19.         ServerSignature On
  20. </VirtualHost>
  21.  
  22. ---wordpress---
  23. <VirtualHost *:80>
  24.         ServerName www.hashtagsystem.de
  25.         ServerAdmin webmaster@localhost
  26.         DocumentRoot /var/www/WordPress/WordPress_01/
  27.         <Directory /var/www/WordPress/WordPress_01/>
  28.                 Options Indexes FollowSymLinks MultiViews
  29.                 AllowOverride None
  30.                 Order allow,deny
  31.                 allow from all
  32.         </Directory>
  33.         ErrorLog /var/log/apache2/error.log
  34.         LogLevel warn
  35.         CustomLog /var/log/apache2/access.log combined
  36.         ServerSignature On
  37. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement