0 使用Nginx做反向代理
Minho edited this page 2018-04-13 15:44:30 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Nginx的配置文件如下

server {
    listen       80;
    
    #此处应该配置你的域名:
    server_name  doc.iminho.me;

    charset utf-8;
    
    #此处配置你的访问日志,请手动创建该目录:
    access_log  /var/log/nginx/webhook.iminho.me/access.log;
    location / {
        try_files /_not_exists_ @backend;
    }
    
    # 这里为具体的服务代理配置
    location @backend {
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host            $http_host;
        proxy_set_header   X-Forwarded-Proto $scheme;
        #此处配置 MinDoc 程序的地址和端口号
        proxy_pass http://127.0.0.1:8181;
    }
}

如果你的网站开启了HTTPS需要注意参数 X-Forwarded-Proto如果后端获取到的不是https请手动设置该参数为https。