mirror of
https://github.com/minoplhy/nginquic.git
synced 2024-11-22 11:37:07 +00:00
30 lines
999 B
Bash
30 lines
999 B
Bash
cd ~/
|
|
rm -rf nginquic
|
|
curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/main/packages.sh | bash
|
|
mkdir nginquic && cd nginquic
|
|
hg clone -b quic https://hg.nginx.org/nginx-quic
|
|
git clone --depth=1 https://github.com/google/boringssl
|
|
cd boringssl
|
|
mkdir build && cd build && cmake .. && make
|
|
cd .. && cd ..
|
|
|
|
# ModSecurity Part
|
|
git clone --depth=1 https://github.com/SpiderLabs/ModSecurity
|
|
cd ModSecurity/
|
|
git submodule init
|
|
git submodule update
|
|
./build.sh
|
|
./configure
|
|
make
|
|
sudo make install
|
|
cd ..
|
|
|
|
cd nginx-quic
|
|
mkdir mosc && cd mosc && curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/main/modules.sh | bash && cd ..
|
|
curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/main/configure.sh | bash && make
|
|
mkdir /lib/nginx/ && mkdir /lib/nginx/modules
|
|
cd objs && cp *.so /lib/nginx/modules
|
|
rm /usr/sbin/nginx
|
|
cp nginx /usr/sbin/nginx
|
|
curl -sSL https://raw.githubusercontent.com/minoplhy/nginquic/main/modules.conf > modules.conf
|
|
cp modules.conf /etc/nginx/modules-enabled |