Browse Source
Apply suggestion (nginx version and config)
Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
mhkarimi1383/master
Muhammed Hussein karimi
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
3 deletions
-
ansible/roles/nginx/templates/docker-compose.yml
-
ansible/roles/nginx/templates/nginx.conf
|
|
@ -3,6 +3,6 @@ services: |
|
|
|
nginx: |
|
|
|
network_mode: host |
|
|
|
restart: always |
|
|
|
image: nginx:1.21.3-alpine |
|
|
|
image: nginx:stable-alpine |
|
|
|
volumes: |
|
|
|
- '/compose/volumes/nginx/:/etc/nginx/' |
|
|
@ -18,7 +18,6 @@ http { |
|
|
|
|
|
|
|
default_type application/octet-stream; |
|
|
|
|
|
|
|
|
|
|
|
### SSL Settings for all servers (https://ssl-config.mozilla.org/#server=nginx&server-version=1.17.2&config=intermediate) |
|
|
|
# certs sent to the client in SERVER HELLO are concatenated in ssl_certificate |
|
|
|
ssl_certificate /etc/nginx/ssl/status.yoursite.fullchain.pem; |
|
|
@ -53,7 +52,6 @@ http { |
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
|
|
|
proxy_set_header X-Forwarded-Proto $scheme; |
|
|
|
|
|
|
|
|
|
|
|
# Remove Headers that gonna be sent to client |
|
|
|
proxy_hide_header X-Powered-By; |
|
|
|
proxy_hide_header Server; |
|
|
|