LoginSignup
4
4

More than 5 years have passed since last update.

nginx.conf for Jekyll

Last updated at Posted at 2012-02-21

nginxについての投稿が少なめなので、投稿してみる。
拙者のブログはJekyllで構築してるのですが、htmlを返すだけなので、locationブロックとかめんどくさい設定はしなくても、こんな感じで動きます。

nginx.conf
# ...

http {
    # ...
    include sites/*.conf;
}
sites/blog.conf
server {
    server_name naoty.jp;
    listen 80;
    root /var/www/blog;
}
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4