server {
listen 80;
server_name localhost;
location / {
root /home/pxg/UCML/BPObject/Screen/UFLAT;
index UserLogin.aspx;
charset utf-8;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
这里的root和index是什么意思,谁能详细的告诉我下!
root 指根目录路径
index 指默认的首页路径。
整体配置意思就是
访问 xxxx:80/
实际上是:xxxx:80/home/pxg/UCML/BPObject/Screen/UFLAT/UserLogin.aspx
访问xxxx:80/ggg.aspx
实际路径是:xxxx:80/home/pxg/UCML/BPObject/Screen/UFLAT/ggg.aspx
xxxx是指localhost吗?
@各种不懂的小鸟: en
@czd890: 我能加下你QQ详细问问吗
@各种不懂的小鸟: 公司 qq不好上
root表示你的程序根目录。index表示你的默认首页。话说你这个是WebForm么?
root 是你程序根目录啊,index是你默认的首页,可以自己添加 index.html index.php 等等 比如你root 配置是 root /home/pxg/UCML/BPObject/Screen/UFLAT; index 配置是 index xxx.html 你访问你的文件目录 实际上就是访问你文件目录里的xxx.html文件