mirror of
https://github.com/minoplhy/nginx-noroot.git
synced 2024-11-22 09:16:53 +00:00
17 lines
550 B
Markdown
17 lines
550 B
Markdown
# NGINX without Root
|
|
This is a mini project that I'll find any workaround for building NGINX without relies on Root Required Dependencies as much as possible
|
|
|
|
The main point of the project is to configure Nginx to just work without root. So many modules are missing, but you can add them yourself.
|
|
|
|
# Setup Script
|
|
|
|
### using Curl
|
|
```
|
|
curl https://raw.githubusercontent.com/minoplhy/nginx-noroot/main/build.sh | bash
|
|
```
|
|
|
|
### using Wget
|
|
```
|
|
wget https://raw.githubusercontent.com/minoplhy/nginx-noroot/main/build.sh
|
|
chmod +x build.sh && ./build.sh
|
|
``` |