nginx的rver配置
rver{} 包含在http{}内部,每⼀个rver{}都是⼀个虚拟主机(站点)
以下为f配置⽂件中rver{ }部分的内容。
rver {
listen 80; //监听端⼝为80,可以⾃定义其他端⼝,也可以加上IP地址,如,listen 127.0.0.1:8080;
rver_name localhost; //定义⽹站域名,可以写多个,⽤空格分隔。
#chart koi8-r; //定义⽹站的字符集,⼀般不设置,⽽是在⽹页代码中设置。
#access_log logs/host.access.log main; //定义访问⽇志,可以针对每⼀个rver(即每⼀个站点)设置它们⾃⼰的访问⽇志。
善心##在rver{}⾥有很多location配置段
location / {
root html; //定义⽹站根⽬录,⽬录可以是相对路径也可以是绝对路径。
index index.html index.htm; //定义站点的默认页。
}
银行客户经理#error_page 404 /404.html; //定义404页⾯
算命师
# redirect rver error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html; //当状态码为500、502、503、504时,则访问50x.html
location = /50x.html {
root html; //定义50x.html所在路径
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#定义访问php脚本时,将会执⾏本location{}部分指令
樱花的季节
#location ~ \.php$ {
# proxy_pass 127.0.0.1; //proxy_pass后⾯指定要访问的url链接,⽤proxy_pass实现代理。
#}
# pass the PHP scripts to FastCGI rver listening on 127.0.0.1:9000
紫灵芝的功效与作用
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000; //定义FastCGI服务器监听端⼝与地址,⽀持两种形式,1 IP:Port, 2 unix:/path/to/sockt
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; //定义SCRIPT_FILENAME变量,后⾯的路径/scripts为上⾯的root指定的⽬录 # include fastcgi_params; //引⽤prefix/conf/fastcgi_params⽂件,该⽂件定义了fastcgi相关的变量
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht { //访问的url中,以/.ht开头的,如,/.htaccess,会被拒绝,返回403状态码。
# deny all; //这⾥的all指的是所有的请求。
#}
}
# another virtual host using mix of IP-, name-, and port-bad configuration
#
#rver {
# listen 8000; //监听8000端⼝
# listen somename:8080; //指定ip:port
# rver_name somename alias another.alias; //指定多个rver_name
# location / {克服困难
# root html;
# index index.html index.htm;动物描写作文
# }
#}
# HTTPS rver
#
#rver {
# listen 443 ssl; //监听443端⼝,即ssl
# rver_name localhost;
### 以下为ssl相关配置
# ssl_certificate cert.pem; //指定pem⽂件路径
# ssl_certificate_key cert.key; //指定key⽂件路径
# ssl_ssion_cache shared:SSL:1m; //指定ssion cache⼤⼩
# ssl_ssion_timeout 5m; //指定ssion超时时间
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2; //指定ssl协议
# ssl_ciphers HIGH:!aNULL:!MD5; //指定ssl算法
# ssl_prefer_rver_ciphers on; //优先采取服务器算法
石斛的食用方法
# location / {
# root html;
# index index.html index.htm; # }
#}