Advertisement
Agilphil

000-default.conf

Apr 24th, 2017
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.18 KB | None | 0 0
  1. <VirtualHost *:80>
  2.      ServerAdmin [email protected]
  3.      ServerName mutatis.io
  4.      ServerAlias www.mutatis.io
  5.  
  6.      DocumentRoot /var/www/wordpress
  7.  
  8.     <Directory />
  9.         Options FollowSymLinks
  10.         AllowOverride None
  11.     </Directory>
  12.  
  13.     <Directory /var/www/wordpress>
  14.         Options Indexes FollowSymLinks MultiViews
  15.         AllowOverride None
  16.         Order allow,deny
  17.         allow from all
  18.     </Directory>
  19.  
  20.      ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  21.      <Directory "/usr/lib/cgi-bin">
  22.         AllowOverride None
  23.         Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  24.         Order allow,deny
  25.         Allow from all
  26.      </Directory>
  27.  
  28.     ErrorLog /etc/apache2/logs/error.log
  29.  
  30.     # Possible values include: debug, info, notice, warn, error, crit,
  31.     # alert, emerg.
  32.     LogLevel warn
  33.  
  34.     CustomLog /etc/apache2/logs/access.log combined
  35.  
  36.     Alias /doc/ "/usr/share/doc/"
  37.     <Directory "/usr/share/doc/">
  38.         Options Indexes MultiViews FollowSymLinks
  39.         AllowOverride None
  40.         Order deny,allow
  41.         Deny from all
  42.         Allow from 127.0.0.0/255.0.0.0 ::1/128
  43.     </Directory>
  44.  
  45.     listen 82.223.16.48:80
  46.  
  47. </VirtualHost>
  48.  
  49. <VirtualHost *:80>
  50.      
  51.      ServerAdmin [email protected]
  52.      ServerName gardenerz.io
  53.      ServerAlias www. gardenerz.io
  54.  
  55.      DocumentRoot /var/www/dolibarr
  56.  
  57.     <Directory />
  58.         Options FollowSymLinks
  59.         AllowOverride None
  60.     </Directory>
  61.  
  62.     <Directory /var/www/dolibarr>
  63.         Options Indexes FollowSymLinks MultiViews
  64.         AllowOverride None
  65.         Order allow,deny
  66.         allow from all
  67.     </Directory>
  68.  
  69.      ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  70.      <Directory "/usr/lib/cgi-bin">
  71.         AllowOverride None
  72.         Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  73.         Order allow,deny
  74.         Allow from all
  75.      </Directory>
  76.  
  77.     ErrorLog /etc/apache2/logs/error.log
  78.  
  79.     # Possible values include: debug, info, notice, warn, error, crit,
  80.     # alert, emerg.
  81.     LogLevel warn
  82.  
  83.     CustomLog /etc/apache2/logs/access.log combined
  84.  
  85.     Alias /doc/ "/usr/share/doc/"
  86.     <Directory "/usr/share/doc/">
  87.         Options Indexes MultiViews FollowSymLinks
  88.         AllowOverride None
  89.         Order deny,allow
  90.         Deny from all
  91.         Allow from 127.0.0.0/255.0.0.0 ::1/128
  92.     </Directory>
  93.  
  94.  
  95. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement