2022-06-11 13:32:47 +00:00
|
|
|
# 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
|
|
|
|
|
2022-11-30 08:51:33 +00:00
|
|
|
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.
|
|
|
|
|
2022-06-11 13:32:47 +00:00
|
|
|
# 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 | ./build.sh
|
|
|
|
```
|