Nginx和Jekyll:在子域中服务

时间:2015-04-07 18:12:57

标签: nginx jekyll

我目前正忙着配置Jekyll和nginx在VPS上一起工作。 基本上,我设置了从我的本地机器到VPS的所有东西和一个git钩子。

这是我的nginx配置文件:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www;
    index index.php index.html index.htm;

    server_name server_ip;

    location / {
        try_files $uri $uri/ =404;
    }

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /var/www;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}
server {
    listen 80;
    server_name server_ip/blog;

    location / {
    root /var/www/blog;
    index index.html index.htm;
    }
}

理想情况下,我希望在/var/www/blog blog.domain.exampleblog.server_ip提供jekyll build目前的内容。

但是,当index.html运行时,网址都是错误的。我可以在server_ip/blog看到/blog/,但网址中的server_ip/blog/2015/04/07/title位未在Jekyll页面上的链接中复制。

例如,帖子应该位于server_ip/2015/04/07/title,但我提供的网址是{{1}}。 CSS文件和图像也是如此。

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:2)

您必须设置baseurl: "/blog"

并链接到此<a href="{{site.baseurl}}{{post.url}}>...的帖子。

并且通常使用{{site.baseurl}}来构建任何网址。