Advertisement
Guest User

Untitled

a guest
Jul 14th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #
  2. # Example.org (/etc/apache2/sites-available/www.example.org)
  3. #
  4. <VirtualHost *>
  5. ServerAdmin webmaster@example.org
  6. ServerName myserver
  7. ServerAlias mysite.ru
  8.  
  9. # Indexes + Directory Root.
  10. DirectoryIndex index.html
  11. DocumentRoot /var/www/mycompany/site1/www/
  12.  
  13. # CGI Directory
  14. ScriptAlias /site1/ /var/www/mycompany/site1/www
  15. <Location /var/www/mycompany/site1/www>
  16. Options +ExecCGI
  17. </Location>
  18. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement