MinasFilm

default

Dec 19th, 2013
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <VirtualHost *:80>
  2.     ServerAdmin webmaster@localhost
  3.  
  4.     DocumentRoot /home/maestro/Документы/Programs/web/base
  5.     <Directory /home/maestro/Документы/Programs/web/base/>
  6.         AllowOverride Limit
  7.         Options -Indexes +FollowSymLinks MultiViews SymLinksIfOwnerMatch IncludesNoExec
  8.         Order allow,deny
  9.         deny from all
  10.     </Directory>
  11.  
  12.     ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  13.     <Directory "/usr/lib/cgi-bin">
  14.         AllowOverride All
  15.         Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  16.         Order allow,deny
  17.         Allow from all
  18.     </Directory>
  19.  
  20.     ErrorLog ${APACHE_LOG_DIR}/error.log
  21.  
  22.     # Possible values include: debug, info, notice, warn, error, crit,
  23.     # alert, emerg.
  24.     LogLevel warn
  25.  
  26.     CustomLog ${APACHE_LOG_DIR}/access.log combined
  27.  
  28.     Alias /doc/ "/usr/share/doc/"
  29.     <Directory "/usr/share/doc/">
  30.         Options Indexes MultiViews FollowSymLinks
  31.         AllowOverride None
  32.         Order deny,allow
  33.         Deny from all
  34.         Allow from 127.0.0.0/255.0.0.0 ::1/128
  35.     </Directory>
  36.  
  37. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment