新手快速学会nginx设置虚拟主机

<返回列表

nginx虚拟主机配置

  server {      listen 80;      server_name localhost;      location / {          root html;          index index.html index.htm;      }      error_page 404 /404.html;      # redirect server error pages to the static page /50x.html      # error_page 500 502 503 504 /50x.html;      location = /50x.html {          root html;      }  }  

配置说明:  listen 80; =>指定虚拟主机监听的是80端口  server_name localhost; =>指定虚拟主机域名  location / { … } =>匹配请求路径,/表示匹配所有请求百度收录批量查询  root html; =>指定虚拟主机的物理根目录,eg、html物理根目录位于D:\div\nginx-1.9.14\html  index index.html index.htm; =>指定虚拟主机的默认首页,默认首页位于D:\div\nginx-1.9.14\html目录下

国内免备案VPS301跳转服务器国内免备案服务器域名被墙跳转301,绕过信息安全中心不能放违反法律法规内容!(北京免备案  镇江免备案 江苏免备案 辽宁免备案vps 山东联通免备案) 
分享新闻到:

更多帮助

新手快速学会nginx设置虚拟主机

新闻中心 2023-06-23
nginx虚拟主机配置 server {    listen 80;    server_name localhost;    location / {        root html;    ...
查看全文

windows服务器如何让iis支持多种脚本语言

新闻中心 2023-06-23
一、支持ASP 支持ASP的话,在IIS下直接设置一下就行的,不用另装软件。 二、支持ASP.NET 下载微...
查看全文

windows10系统进行远程桌面连接速度慢的解

新闻中心 2023-06-22
windows10系统进行远程桌面连接,如果远程桌面非常卡,或者速度非常慢,其原因是系统设置,...
查看全文