1234567891011121314151617181920212223242526272829303132333435363738 |
- <VirtualHost *:80>
- <FilesMatch "\.php$">
- SetHandler "proxy:fcgi://127.0.0.1:9000/"
- </FilesMatch>
-
-
-
-
-
-
-
-
- ServerAdmin webmaster@localhost
- DocumentRoot /var/www/html
- <Directory "/var/www/html">
- AllowOverride All
- </Directory>
-
-
-
-
-
-
- ErrorLog ${APACHE_LOG_DIR}/error.log
- CustomLog ${APACHE_LOG_DIR}/access.log combined
-
-
-
-
-
-
- </VirtualHost>
|