Nginx 站点配置模板和变量

Nginx 站点配置模板和变量

你好,我想设置一个简单的 nginx 配置,我读到你可以使用来设置变量set $variable content;,但到目前为止我还没有运气......

以下是我目前想到的/正在努力实现的目标:

server {

##################################################
# Set variables
set $port               80;                        # e.g. 80 or 443;
set $domain         domain.com *.domain.com;   # e.g. www.domain.com or just domain.com
set $subdomain          false;                     # e.g. subdomain in subdomain.domain.com or false
set type               live;                      # live, dev or stage

##################################################
# Include /web/sites configuration template
include /etc/nginx/site-config-template;

}

以下是 /etc/nginx/site-config-template 的内容:

##################################################
# If $subdomain is not false at slash
if ( $subdomain ) {
    set $subdomain "{$subdomain}/";
}

##################################################
# Define server main variables
listen          $port;
server_name     $domain;
root            /web/sites/$domain/$subdomain$type/public_html/current/;
index           index.php index.html;

##################################################
# Logs
access_log  /web/sites/$domain/$subdomain$type/logs/access.log;
error_log   /web/sites/$domain/$subdomain$type/logs/error.log;

##################################################
# push all to index.php
location / {
    try_files $uri $uri/ /index.php$args;
}

##################################################
# pass php files to fastcgi
location ~ \.php$ {
    try_files $uri =404;
    include fastcgi_params;
    fastcgi_param SITE_TYPE $type;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
}

我是否无法在配置文件中以这种方式设置变量,或者我只是做了一些非常错误的事情?

答案1

nginx 常见问题关于这个话题非常清楚:

问:是否有一种正确的方法可以使用 nginx 变量来缩短配置的各个部分,并使用它们作为宏来使配置的各个部分作为模板工作?

A:变量不应用作模板宏。变量在处理每个请求期间在运行时进行评估,因此与纯静态配置相比,它们的成本相当高。使用变量来存储静态字符串也不是一个好主意。相反,应该使用宏扩展和“include”指令来更轻松地生成配置,并且可以使用外部工具(例如 sed + make 或任何其他常见模板机制)来完成。

使用外部工具构建配置是可行的方法。我曾经使用过m4+ make。我在我的一个项目中使用自定义 Python 脚本。选择很多。

答案2

简单的答案是,只需在每个域上使用静态服务器配置,不要自作聪明。我设置了一个脚本来生成配置文件。

相关内容