server { listen 81; server_name localhost; access_log /data/nginx/logs/access.log; error_log /data/nginx/logs/error.log; location /pc { alias /data/dist/html; index index.html index.htm; } location /icons/ { root /data/images/; autoindex on; } location / { proxy_pass http://gateways/api; } }
时间: 2024-04-24 20:22:01 浏览: 171
fastDFS+Nginx_fastdfs_fastdfs、nginx_fastdfs/nginx_
这是一个 Nginx 的配置文件,其中定义了一个服务器,监听本地的 81 端口。这个服务器有三个 location ,分别是 /pc 、/icons/ 和 / 。
- /pc 这个 location 中使用了 alias 指令,将 URL 中的 /pc 替换为 /data/dist/html 目录下的文件。同时设置了 index 页面为 index.html 和 index.htm。
- /icons/ 这个 location 中使用了 root 指令,将 URL 中的 /icons/ 替换为 /data/images/ 目录下的文件。同时设置了 autoindex on ,开启自动列出目录中的文件列表。
- / 这个 location 中使用了 proxy_pass 指令,将所有 URL 转发到 http://gateways/api 上。
需要注意的是,这个配置文件中没有设置 SSL,如果需要使用 HTTPS 协议,需要额外添加配置。
阅读全文