diff --git a/README.md b/README.md index 4449656..53253e4 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ This Script is using to build nginx with quic and some modules i'm currently usi OS : Debian ```shell +Nginx_Install=yes # This variable is required if you want Nginx to be installed scriptibly (on Debian-based systems). curl https://raw.githubusercontent.com/minoplhy/nginquic/ModSecurity_incl/build.sh | sudo bash ``` diff --git a/build.sh b/build.sh index 5e08dda..1643c85 100644 --- a/build.sh +++ b/build.sh @@ -33,14 +33,7 @@ cd nginx-quic mkdir mosc && cd mosc && curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/ModSecurity_incl/modules.sh | bash && cd .. curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/ModSecurity_incl/configure.sh | bash && make -read -p "Would you like to Install Nginx Scriptly? (y/n)?" choice -case "$choice" in - y|Y ) Nginx_Install_ANS="install";; - n|N ) Nginx_Install_ANS="no";; - * ) Nginx_Install_ANS="abort";; -esac - -if [[ $Nginx_Install_ANS == "install" ]]; then +if [[ $Nginx_Install == "yes" ]]; then mkdir /lib/nginx/ && mkdir /lib/nginx/modules cd objs && cp *.so /lib/nginx/modules rm /usr/sbin/nginx @@ -48,5 +41,5 @@ if [[ $Nginx_Install_ANS == "install" ]]; then curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/ModSecurity_incl/modules.conf > modules.conf cp modules.conf /etc/nginx/modules-enabled else - echo "Nginx Installation Abort. Your Nginx assets location is : ~/nginquic/nginx-quic/objs" + echo "Nginx_Install variable isn't set/vaild. Your Nginx assets location is : ~/nginquic/nginx-quic/objs" fi \ No newline at end of file