apached的文件

ServerRoot "/etc/httpd"

Listen 80

Include conf.modules.d/*.conf

User apache
Group apache

ServerAdmin root@localhost


    AllowOverride none
    Require all denied

#DocumentRoot "/var/www/html/"

#
#
#    AllowOverride None
#    # Allow open access:
#    Require all granted
#

#
#    Options Indexes FollowSymLinks

#    AllowOverride None

#    Require all granted
#


    DirectoryIndex index.html index.php


    Require all denied

ErrorLog "logs/error_log"

#
LogLevel warn


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

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

    #
    #CustomLog "logs/access_log" common

    CustomLog "logs/access_log" combined

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


    AllowOverride None
    Options None
    Require all granted


    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

AddDefaultCharset UTF-8


    MIMEMagicFile conf/magic

#
# 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



  DocumentRoot /var/www/html/cms8/
  ServerName bobozyz.cn
  ServerAlias bobozyz.cc bobozyz.net
  DirectoryIndex index.html index.htm index.php
 
    AllowOverride None
    Require all granted
 



  DocumentRoot /var/www/html/bobotv/
  ServerName bobotv.cc
#  ServerAlias bobozyz.cc bobozyz.net
  DirectoryIndex index.html index.htm index.php
 
    AllowOverride None
    Require all granted
 

#  ErrorLog logs/error_log
#  CustomLog logs/access_log common

你可能感兴趣的:(NGINX相关)