Advertisement
Guest User

Untitled

a guest
Dec 20th, 2010
4,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.39 KB | None | 0 0
  1. <VirtualHost 192.168.1.100:80>
  2.         ServerAdmin webmaster@localhost
  3.  
  4.         ServerName site.i-mscp.net
  5.         ServerAlias www.site.i-mscp.net
  6.  
  7.         DocumentRoot /home/nuxwin/Bureau/tomato
  8.         <Directory />
  9.                 Options FollowSymLinks
  10.                 AllowOverride None
  11.         </Directory>
  12.         <Directory /home/nuxwin/Bureau/tomato>
  13.                 Options Indexes FollowSymLinks MultiViews
  14.                 AllowOverride All
  15.                 Order allow,deny
  16.                 allow from all
  17.         </Directory>
  18.  
  19.         ErrorLog ${APACHE_LOG_DIR}/error.log
  20.  
  21.         # Possible values include: debug, info, notice, warn, error, crit,
  22.         # alert, emerg.
  23.         LogLevel warn
  24.  
  25.         CustomLog ${APACHE_LOG_DIR}/access.log combined
  26. </VirtualHost>
  27.  
  28. <VirtualHost 192.168.1.100:80>
  29.     ServerAdmin webmaster@localhost
  30.  
  31.     ServerName i-mscp.net
  32.     ServerAlias www.i-mscp.net
  33.  
  34.     DocumentRoot /home/nuxwin/Bureau/imscp-wp
  35.     <Directory />
  36.         Options FollowSymLinks
  37.         AllowOverride None
  38.     </Directory>
  39.     <Directory /home/nuxwin/Bureau/imscp-wp>
  40.         Options Indexes FollowSymLinks MultiViews
  41.         AllowOverride All
  42.         Order allow,deny
  43.         allow from all
  44.     </Directory>
  45.  
  46.     ErrorLog ${APACHE_LOG_DIR}/error.log
  47.  
  48.     # Possible values include: debug, info, notice, warn, error, crit,
  49.     # alert, emerg.
  50.     LogLevel warn
  51.  
  52.     CustomLog ${APACHE_LOG_DIR}/access.log combined
  53. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement