nginx的server配置
server{} 包含在http{}内部,每⼀个server{}都是⼀个虚拟主机(站点)
以下为f配置⽂件中server{  }部分的内容。
server {
listen      80;  //监听端⼝为80,可以⾃定义其他端⼝,也可以加上IP地址,如,listen 127.0.0.1:8080;
server_name  localhost; //定义⽹站域名,可以写多个,⽤空格分隔。
#charset koi8-r; //定义⽹站的字符集,⼀般不设置,⽽是在⽹页代码中设置。
#access_log  logs/host.access.log  main; //定义访问⽇志,可以针对每⼀个server(即每⼀个站点)设置它们⾃⼰的访问⽇志。
##在server{}⾥有很多location配置段
location / {
root  html;  //定义⽹站根⽬录,⽬录可以是相对路径也可以是绝对路径。
index  index.html index.htm; //定义站点的默认页。
}
#error_page  404              /404.html;  //定义404页⾯
# redirect server 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 server 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
#nginx 配置文件
#location ~ /\.ht {  //访问的url中,以/.ht开头的,如,ample/.htaccess,会被拒绝,返回403状态码。
#    deny  all;  //这⾥的all指的是所有的请求。
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
#    listen      8000;  //监听8000端⼝
#    listen      somename:8080;  //指定ip:port
#    server_name  somename  alias  another.alias;  //指定多个server_name
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
# HTTPS server
#
#server {
#    listen      443 ssl;  //监听443端⼝,即ssl
#    server_name  localhost;
### 以下为ssl相关配置
#    ssl_certificate      cert.pem;    //指定pem⽂件路径
#    ssl_certificate_key  cert.key;  //指定key⽂件路径
#    ssl_session_cache    shared:SSL:1m;  //指定session cache⼤⼩
#    ssl_session_timeout  5m;  //指定session超时时间
#    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;  //指定ssl协议
#    ssl_ciphers  HIGH:!aNULL:!MD5;  //指定ssl算法
#    ssl_prefer_server_ciphers  on;  //优先采取服务器算法
#    location / {
#        root  html;
#        index  index.html index.htm; #    }
#}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。