From: Peter Stadler Date: Sun, 2 Feb 2020 18:13:30 +0000 (+0100) Subject: ariang: rename nginx configuration file X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6dc2ca2219101a2f6d67b9b1ac00a97c303b2275;p=feed%2Fpackages.git ariang: rename nginx configuration file This makes the ariang-nginx ready for Nginx using the conf.d directory. Signed-off-by: Peter Stadler --- diff --git a/net/ariang/Makefile b/net/ariang/Makefile index 1a7550466c..48ff438cc9 100644 --- a/net/ariang/Makefile +++ b/net/ariang/Makefile @@ -61,8 +61,8 @@ endef define Package/ariang-nginx/install $(Package/ariang/install) - $(INSTALL_DIR) $(1)/etc/nginx - $(INSTALL_BIN) ./files/ariang.conf $(1)/etc/nginx/ariang.conf + $(INSTALL_DIR) $(1)/etc/nginx/conf.d/ + $(INSTALL_BIN) ./files/ariang.locations $(1)/etc/nginx/conf.d/ $(INSTALL_DIR) $(1)/etc/uci-defaults $(INSTALL_BIN) ./files/80_ariang-nginx-support $(1)/etc/uci-defaults/80_ariang-nginx-support endef diff --git a/net/ariang/files/80_ariang-nginx-support b/net/ariang/files/80_ariang-nginx-support index a9762e09be..f3eea690f4 100644 --- a/net/ariang/files/80_ariang-nginx-support +++ b/net/ariang/files/80_ariang-nginx-support @@ -1,10 +1,12 @@ #!/bin/sh -if [ -f "/etc/nginx/nginx.conf" ] && [ -f "/etc/nginx/ariang.conf" ]; then +if [ -f "/etc/nginx/nginx.conf" ] && [ -f "/etc/nginx/conf.d/ariang.locations" ]; +then if [ "$( grep 'server_name localhost;' < /etc/nginx/nginx.conf)" ] && - [ ! "$( grep 'include ariang.conf;' < /etc/nginx/nginx.conf)" ]; then - sed -i '/server_name localhost;/a \\t\tinclude ariang.conf;' /etc/nginx/nginx.conf + [ ! "$( grep 'include conf.d/ariang.locations;' < /etc/nginx/nginx.conf)" ]; then + sed -i '/server_name localhost;/\ + a\\tinclude conf.d/ariang.locations;' /etc/nginx/nginx.conf if [ -f /var/run/nginx.pid ]; then /etc/init.d/nginx restart fi diff --git a/net/ariang/files/ariang.conf b/net/ariang/files/ariang.conf deleted file mode 100644 index 28b0a8ada5..0000000000 --- a/net/ariang/files/ariang.conf +++ /dev/null @@ -1,4 +0,0 @@ -location /ariang { - index index.html; - alias /www/ariang/; -} \ No newline at end of file diff --git a/net/ariang/files/ariang.locations b/net/ariang/files/ariang.locations new file mode 100644 index 0000000000..28b0a8ada5 --- /dev/null +++ b/net/ariang/files/ariang.locations @@ -0,0 +1,4 @@ +location /ariang { + index index.html; + alias /www/ariang/; +} \ No newline at end of file