mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-24 20:33:04 +00:00
feat: allow ssl
This commit is contained in:
parent
b29616791f
commit
21c959e87b
3 changed files with 5 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -7,4 +7,5 @@ db.*
|
|||
venv*
|
||||
node_modules
|
||||
.vscode
|
||||
.env
|
||||
.env
|
||||
Resources/nginx/ssl/*
|
|
@ -59,6 +59,8 @@ http {
|
|||
listen 80 deferred;
|
||||
server_name _;
|
||||
|
||||
include /ssl/ssl.conf*;
|
||||
|
||||
client_body_timeout 5s;
|
||||
client_header_timeout 5s;
|
||||
|
||||
|
|
|
@ -39,6 +39,7 @@ services:
|
|||
command: [nginx-debug, '-g', 'daemon off;']
|
||||
volumes:
|
||||
- ./Resources/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
- ./Resources/nginx/ssl:/ssl:ro
|
||||
volumes_from:
|
||||
- app:ro
|
||||
links:
|
||||
|
|
Loading…
Reference in a new issue