LoginSignup
3
3

More than 5 years have passed since last update.

nginxの設定の一部を複数ファイルに分ける方法

Posted at

nginxの設定を複数ファイルに分ける方法

記述が長すぎたり、役割によってファイルを分けたい場合、includeを使用すれば実現できる。

confファイルとして読ませたくない場合も.txtなどのファイルとして読ませる事が出来る。

例:rewriteの設定だけ別ファイル(.txt)に持たせる場合
・conf本体の設定

nginx.conf
server {
#~~~~~~~~~~~~~省略~~~~~~~~~~~~~~~
    include /etc/nginx/conf.d/nginx_rewrite.txt;
#~~~~~~~~~~~~~省略~~~~~~~~~~~~~~~
}

・includeされたrewrite用ファイル

nginx_rewrite.txt
server {
#~~~~~~~~~~~~~省略~~~~~~~~~~~~~~~
    rewrite ^/sample/from.php /to/ permanent;
    rewrite ^/sample/from2.php /to2/ permanent;
#~~~~~~~~~~~~~省略~~~~~~~~~~~~~~~
}

3
3
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
3
3