diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2019-12-29 01:09:21 +0100 |
---|---|---|
committer | Ansuel Smith <ansuelsmth@gmail.com> | 2019-12-29 01:11:26 +0100 |
commit | 85b09eebb2541ceacc01dd4f353c13089d06c82c (patch) | |
tree | 796248a630fc349bd5d3bf48f5ac158d26fcbaa7 /net/nginx/files-luci-support | |
parent | 7e20373cde8610afda9cd99104cbb99e164b24a1 (diff) |
nginx: fix missing cgi-exec definition
Add missing cgi-io exec definition to fix broken
luci webui as now it does actually use it.
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'net/nginx/files-luci-support')
-rw-r--r-- | net/nginx/files-luci-support/luci_uwsgi.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nginx/files-luci-support/luci_uwsgi.conf b/net/nginx/files-luci-support/luci_uwsgi.conf index 404eff2a6..3ea3de914 100644 --- a/net/nginx/files-luci-support/luci_uwsgi.conf +++ b/net/nginx/files-luci-support/luci_uwsgi.conf @@ -5,7 +5,7 @@ location /cgi-bin/luci { uwsgi_modifier1 9; uwsgi_pass unix:////var/run/luci-webui.socket; } -location ~ /cgi-bin/cgi-(backup|download|upload) { +location ~ /cgi-bin/cgi-(backup|download|upload|exec) { include uwsgi_params; uwsgi_param SERVER_ADDR $server_addr; uwsgi_modifier1 9; |