aboutsummaryrefslogtreecommitdiffstats
path: root/compose/production/nginx
diff options
context:
space:
mode:
Diffstat (limited to 'compose/production/nginx')
-rw-r--r--compose/production/nginx/Dockerfile2
-rw-r--r--compose/production/nginx/default.conf7
2 files changed, 0 insertions, 9 deletions
diff --git a/compose/production/nginx/Dockerfile b/compose/production/nginx/Dockerfile
deleted file mode 100644
index ec2ad35..0000000
--- a/compose/production/nginx/Dockerfile
+++ /dev/null
@@ -1,2 +0,0 @@
-FROM docker.io/nginx:1.17.8-alpine
-COPY ./compose/production/nginx/default.conf /etc/nginx/conf.d/default.conf
diff --git a/compose/production/nginx/default.conf b/compose/production/nginx/default.conf
deleted file mode 100644
index 562dba8..0000000
--- a/compose/production/nginx/default.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-server {
- listen 80;
- server_name localhost;
- location /media/ {
- alias /usr/share/nginx/media/;
- }
-}