0 配合nginx让MinDoc运行在二级子目录
Minho edited this page 2018-03-25 16:53:01 +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.

从 v0.10 以及以上版本开发MinDoc支持运行在二级子目录。

要想让MinDoc运行在二级子目录需要在app.conf配置文件中配置baseurl项为你的域名,例如:https://www.iminho.me/wiki

之后在nginx中配置路由规则将属于MinDoc的路由重定向到MinDoc端口。配置如下

server {
    listen  443;
    server_name www.iminho.me;
    add_header X-Content-Type-Options nosniff;

    charset      utf-8;
    error_page 500 502 503 504 /50x.html;
    access_log  /var/log/nginx/www.iminho.me/access.log  main;
    set $root_path '/var/www/www.iminho.me/mindoc';
    root $root_path;
    try_files $uri $uri/ @rewrite;
    index index.php index.html;
    location /50x.html {
       root /var/www/html;
    }
    #此处是关键
    location /wiki/ {
        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:8182/;
    }
    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
        root $root_path;
        expires 30m;
    }
}