多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
``` # # # # # # ServerRoot "/etc/httpd" # # # #Listen 12.34.56.78:80 Listen 80 # # # # Include conf.modules.d/*.conf # # # User apache Group apache # # # # # ServerAdmin root@localhost # # # #ServerName www.example.com:80 # # <Directory /> AllowOverride none Require all denied </Directory> # # # # DocumentRoot "/var/www/html" # # <Directory "/var/www"> AllowOverride None Require all granted </Directory> <Directory "/var/www/html"> # # # # Options Indexes FollowSymLinks # # AllowOverride None # # Require all granted </Directory> # # <IfModule dir_module> DirectoryIndex index.html </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 # # #AddEncoding x-compress .Z #AddEncoding x-gzip .gz .tgz # # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # # #AddHandler cgi-script .cgi #AddHandler type-map var # # # AddType text/html .shtml AddOutputFilter INCLUDES .shtml </IfModule> # # AddDefaultCharset UTF-8 <IfModule mime_magic_module> # # MIMEMagicFile conf/magic </IfModule> # # #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 # # # #EnableMMAP off EnableSendfile on # IncludeOptional conf.d/*.conf ```