mirror of
https://github.com/minoplhy/nginx-noroot.git
synced 2024-11-22 17:26:51 +00:00
22 lines
543 B
Markdown
22 lines
543 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
|
||
|
|
||
|
# 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
|
||
|
```
|
||
|
|
||
|
# Root Required
|
||
|
I can't figure workaround for these dependencies
|
||
|
|
||
|
```
|
||
|
Openssl (unsuccessful build when using self compiled openssl)
|
||
|
- libssl-dev
|
||
|
```
|