0
我的nginx.conf
文件越來越大,數十個虛擬主機一遍又一遍地重複相同的行。我想知道是否有無論如何宣佈在全球範圍以下,而不必重複它們對每個項目:Nginx更好的VHOST管理?
# Route all requests for non-existent files to index.php
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
}
location ~ \.php($|/) {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
這個問題更可能更適合於serverfault ... – ircmaxell 2010-08-16 19:49:32