Initial commit

This commit is contained in:
2021-11-17 21:57:45 +01:00
commit 38225fcac0
3 changed files with 28 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
*.swp
venv/*
*.pyc
__pycache__/*
__pycache__
*.wpr
.idea/
+3
View File
@@ -0,0 +1,3 @@
FROM nginx
ADD nginx.conf /etc/nginx/nginx.conf
+18
View File
@@ -0,0 +1,18 @@
events {
worker_connections 768;
}
http {
server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
return 204;
}
}
}