如何组合 nginx 中服务器块的类似配置信息?

如何组合 nginx 中服务器块的类似配置信息?

我目前在标准文件路径中为 2 个服务器块提供了 3 个 nginx 配置文件:

  1. /usr/local/etc/nginx/nginx.conf
  2. /usr/local/etc/nginx/sites-available/one.website.com
  3. /usr/local/etc/nginx/sites-available/two.website.com

其中包括文件夹中具有指向两个网站的符号链接的nginx.conf所有文件。/usr/local/etc/nginx/sites-enabled/*sites-available

两个网站都提供 PHP 文件,两个配置文件之间的唯一区别是

server_name
access_log
error_log
root
fastcgi_param PHP_VALUE "error_log=...

合并两个网站配置文件的最佳做法是什么?

下面是其中一个的完整配置(请注意,设置 PHPerror_log值与 nginx 相关error_log):

server {
    listen 80;
    server_name one.website.com;
    access_log /usr/local/var/log/one.website.com-access.log;
    error_log  /usr/local/var/log/one.website.com-error.log;
    root /Users/hobbes3/Scripts/Neadwerx/one.website.com;

    location / {
        index index.html index.htm index.php;
        autoindex on;
    }

    # Disable favicon.ico logging
    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }

    # Enable permalink structures
    if (!-e $request_filename) {
        rewrite . /index.php last;
    }

    location ~ \.php$ {
        try_files $uri = 404;
        include /usr/local/etc/nginx/fastcgi_params;
        fastcgi_pass 127.0.0.1:9001; # 9000 for xdebug
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PHP_VALUE "error_log=/usr/local/var/log/one.website.com-error.log";
    }

    # Disable static content logging and set cache time to max
    location ~* ^.+.(jpg|jpeg|gif|png|css|js|ico|xml|html|htm|txt)$ {
        access_log off;
        log_not_found off;
        expires max;
    }

    # Deny access to htaccess and htpasswd files
    location ~ /\.ht {
        deny  all;
    }

    # Deny access to hidden files (beginning with a period)
    #location ~ /\. {
    #    access_log off; log_not_found off; deny all;
    #}
}

答案1

nginx 对此的官方说法是不,我们喜欢笨重且充满冗余的配置;主要是因为它更快,而且他们的重点是速度。他们建议使用以下任一方法:

  • 包括 sites-configured 下指向通用配置文件的每个文件。您的发行版在创建文件夹结构时可能没有考虑到这一点,因此您可能需要自己创建一些内容。
  • 外部配置生成机制,如一组sedmake脚本来生成配置文件。

相关内容