Add docker support

This commit is contained in:
RemiZOffAlex
2020-08-20 20:11:57 +03:00
parent 3de14c84e8
commit 308aa64146
25 changed files with 487 additions and 27 deletions

10
deploy/nginx/app.conf Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 80;
server_name _;
access_log /var/log/nginx/myapp-access.log;
error_log /var/log/nginx/myapp-error.log;
location / {
include proxy_params;
proxy_pass http://app:8000/;
}
}