Initial commit

main
Jerry Aldrich 3 years ago
commit 28500a7698
  1. 3
      Dockerfile
  2. 9
      README.md
  3. 2
      conf.d/server_tokens.conf

@ -0,0 +1,3 @@
FROM nginxinc/nginx-unprivileged:1.23.2-alpine-slim
COPY conf.d/* /etc/nginx/conf.d/

@ -0,0 +1,9 @@
# nginx-unprivileged
A wrapper around nginx-unprivileged to modify the config
## How to Run
```
sudo docker run -p 8080:8080 jerryaldrichiii/nginx-unprivileged:latest
```

@ -0,0 +1,2 @@
# Turn off showing server versions
server_tokens off;
Loading…
Cancel
Save