Advertisement
Guest User

Untitled

a guest
Jul 29th, 2011
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin gregoire.leroy@retenodus.net
  3. DocumentRoot "/var/www/lupustest/"
  4.  
  5. ServerName lupustest.local
  6. ErrorLog "/var/log/apache2/lupustest.local.log-err"
  7. CustomLog "/var/log/apache2/lupustest.local.log-access" combined
  8.  
  9. AddHandler php5-fcgi .php
  10. FastCgiExternalServer /usr/lib/cgi-bin/php-fpm -host 127.0.0.1:9876
  11. Action php5-fcgi /cgi-bin/php-fpm
  12. Alias /cgi-bin/ /usr/lib/cgi-bin/
  13.  
  14. AliasMatch /(.*)$ /$1
  15.  
  16. <Directory /var/www/lupustest/>
  17. Options SymLinksIfOwnerMatch
  18. AllowOverride All
  19. Order allow,deny
  20. Allow from all
  21. </Directory>
  22. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement