nginx.conf文件主要内容如下
upstream myhost { server localhost:8080 weight=6; #权重,我这里随便写的 server localhost:8091 weight=4; } server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; proxy_pass http://myhost; } location /res/ { alias D:/pic/; }
D:/pic/目录下是我图片路径,例如D:/pic/下有一张名为 100.jpg的图片,现在只需要访问http://localhost/res/110.jpg就可以访问到图片。
时间: 2024-10-27 10:56:26