mirror of
https://github.com/minoplhy/nginquic.git
synced 2024-11-22 11:37:07 +00:00
18 lines
798 B
Bash
18 lines
798 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 https://github.com/google/boringssl
|
||
|
cd boringssl
|
||
|
mkdir build && cd build && cmake .. && make
|
||
|
cd .. && 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
|