nginx for win 平台下如何配置虚拟目录?支持磁盘映射吗?
答案:2 悬赏:80 手机版
解决时间 2021-03-01 07:33
- 提问者网友:箛茗
- 2021-02-28 15:08
nginx for win 平台下如何配置虚拟目录?支持磁盘映射吗?
最佳答案
- 五星知识达人网友:逃夭
- 2021-02-28 16:28
nginx在windows下的配置和linux下的配置几乎没有什么区别。如果说去别的话,就是在配置路径的时候有区别。linux下的路径配置为/home/xx/xx; 而windows下必须为:d:\xxx\xxx。
例如,我再windows下搭建的nginx的虚拟主机中的配置为:
server {
listen 8080;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
location ~ \.htm {
root D:\webroot\tpl\html;
index index.html index.htm;
}
location ~ (css|js|img|fonts) {
root D:\webroot\css;
index index.html index.htm;
}
}
例如,我再windows下搭建的nginx的虚拟主机中的配置为:
server {
listen 8080;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
location ~ \.htm {
root D:\webroot\tpl\html;
index index.html index.htm;
}
location ~ (css|js|img|fonts) {
root D:\webroot\css;
index index.html index.htm;
}
}
全部回答
- 1楼网友:十年萤火照君眠
- 2021-02-28 16:39
额
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯