# HTTP listen addresses, multiple allowed list listen_http 0.0.0.0:80 list listen_http [::]:80
# HTTPS listen addresses, multiple allowed list listen_https 0.0.0.0:443 list listen_https [::]:443
# Redirect HTTP requests to HTTPS if possible option redirect_https 1
# Server document root option home /www # 此处省略其他配置 # List of extension->interpreter mappings. # Files with an associated interpreter can # be called outside of the CGI prefix anddo # not need to be executable. # list interpreter ".php=/usr/bin/php-cgi" # list interpreter ".cgi=/usr/bin/perl" list interpreter ".lua=/usr/bin/lua" # 我们添加的内容
Gitalking ...