16 lines
389 B
Text
16 lines
389 B
Text
<VirtualHost _default_:80>
|
|
ServerName http://localhost:80
|
|
UseCanonicalName on
|
|
|
|
LogLevel warn
|
|
ErrorLog /var/www/logs/vpn.error_log
|
|
|
|
# Do not log (valid) web browser requests
|
|
TransferLog /dev/null
|
|
#TransferLog /var/www/logs/vpn.access_log
|
|
|
|
<FilesMatch \.php$>
|
|
SetHandler "proxy:fcgi://127.0.0.1:32184"
|
|
CGIPassAuth on
|
|
</FilesMatch>
|
|
</VirtualHost>
|