Browse Source

nginx: Enhanced nginx.conf to explicitly disable uwsgi module if uwsgi is not installed.

user/amery/mess
Nagy Károly Gábriel 14 years ago
parent
commit
ce20435611
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      network/nginx/nginx.conf

+ 1
- 1
network/nginx/nginx.conf

@ -47,7 +47,7 @@ for x in openssl:ssl libgd:image_filter zlib:gzip_static; do
done
# --without- because of dependency
for x in pcre:http_rewrite_module openssl:http-cache; do
for x in pcre:http_rewrite_module openssl:http-cache uwsgi:http_uwsgi_module; do
if ! pkginstalled "${x%:*}"; then
var_append confopt ' ' "--without-${x#*:}"
fi

Loading…
Cancel
Save