apached的文件

xiaoxiao2025-08-11  39

ServerRoot "/etc/httpd"

Listen 80

Include conf.modules.d/*.conf

User apache Group apache

ServerAdmin root@localhost

<Directory />     AllowOverride none     Require all denied </Directory>

#DocumentRoot "/var/www/html/"

# #<Directory "/var/www/html/cms8"> #    AllowOverride None #    # Allow open access: #    Require all granted #</Directory>

#<Directory "/var/www/html/cms8"> #    Options Indexes FollowSymLinks

#    AllowOverride None

#    Require all granted #</Directory>

<IfModule dir_module>     DirectoryIndex index.html index.php </IfModule>

<Files ".ht*">     Require all denied </Files>

ErrorLog "logs/error_log"

# LogLevel warn

<IfModule log_config_module>     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined     LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio     </IfModule>

    #     #CustomLog "logs/access_log" common

    CustomLog "logs/access_log" combined </IfModule>

<IfModule alias_module>

    ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

</IfModule>

<Directory "/var/www/cgi-bin">     AllowOverride None     Options None     Require all granted </Directory>

<IfModule mime_module>     TypesConfig /etc/mime.types

    #AddType application/x-gzip .tgz     #     AddType application/x-compress .Z     AddType application/x-gzip .gz .tgz

    #AddHandler cgi-script .cgi

    AddType text/html .shtml     AddOutputFilter INCLUDES .shtml </IfModule>

AddDefaultCharset UTF-8

<IfModule mime_magic_module>     MIMEMagicFile conf/magic </IfModule>

# # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html #

EnableSendfile on

# Load config files in the "/etc/httpd/conf.d" directory, if any. IncludeOptional conf.d/*.conf

<VirtualHost 172.247.250.82:80>   DocumentRoot /var/www/html/cms8/   ServerName bobozyz.cn   ServerAlias bobozyz.cc bobozyz.net   DirectoryIndex index.html index.htm index.php   <Directory "/var/www/html/cms8/">     AllowOverride None     Require all granted   </Directory> </VirtualHost>

<VirtualHost 172.247.250.83:80>   DocumentRoot /var/www/html/bobotv/   ServerName bobotv.cc #  ServerAlias bobozyz.cc bobozyz.net   DirectoryIndex index.html index.htm index.php   <Directory "/var/www/html/bobotv/">     AllowOverride None     Require all granted   </Directory>

#  ErrorLog logs/error_log #  CustomLog logs/access_log common </VirtualHost>

转载请注明原文地址: https://www.6miu.com/read-5034674.html

最新回复(0)