Nginx 配置备查

坑点:

  • 结尾必须加分号
# 服务节点
    server {
        listen  27182;                # 服务端口
        server_name  192.168.2.108;   # 服务地址
        root  html;                   # 应用文件根路径

        # 首页节点, 根节点
        location / {
            # 重定向配置
            try_files  $uri  $uri/  @router;
            # 首页配置
            index  index.html  index.htm;
        }
        # 反向代理
        location ^~ /api {
            proxy_pass   http://127.0.0.1:8000/api;
        }
        # 路由重定向
        location @router {
            rewrite ^.*$ /index.html last;
        }



posted @   太晓  阅读(24)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示