123456789101112131415161718192021 |
- <VirtualHost *:80>
- ServerAdmin lyq@yoqi.me
- DocumentRoot "/home/twtech/www/s.yoqi.me"
- ServerName s.yoqi.me
-
- # SSLEngine on
- # SSLCertificateFile "/root/.acme.sh/yoqi.me/yoqi.me.cer"
- # SSLCertificateKeyFile "/root/.acme.sh/yoqi.me/yoqi.me.key"
- # ErrorLog "/data/wwwlogs/s.yoqi.me_error_apache.log"
- # CustomLog "/data/wwwlogs/s.yoqi.me_apache.log" common
-
- <Directory "/home/twtech/www/s.yoqi.me">
- SetOutputFilter DEFLATE
- Options FollowSymLinks ExecCGI
- Require all granted
- AllowOverride All
- Order allow,deny
- Allow from all
- DirectoryIndex index.html index.php
- </Directory>
- </VirtualHost>
|