diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cae401b3e48e85b933157a52c5b7bc42a0820683..8c917865f49f0979f34f14da6d3b66ba9148514c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,6 @@ image: docker:20.10.8
 variables:
   DOCKER_TLS_CERTDIR: "/certs"
   IMAGE_TAG_APP: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
-  IMAGE_TAG_NGINX: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-nginx
 
 services:
   - docker:20.10.8-dind
@@ -20,11 +19,3 @@ build_app:
     - docker pull $CI_REGISTRY_IMAGE:test || true
     - docker build --cache-from $CI_REGISTRY_IMAGE:test -t $IMAGE_TAG_APP .
     - docker push $IMAGE_TAG_APP
-
-build_nginx:
-  stage: build
-  when: manual
-  script:
-    - docker pull $CI_REGISTRY_IMAGE:test-nginx || true
-    - docker build --cache-from $CI_REGISTRY_IMAGE:test-nginx -t $IMAGE_TAG_NGINX . -f Dockerfile.nginx
-    - docker push $IMAGE_TAG_NGINX
diff --git a/Dockerfile.nginx b/Dockerfile.nginx
deleted file mode 100644
index 162c997050ccbe42511bfb0f855634854564dead..0000000000000000000000000000000000000000
--- a/Dockerfile.nginx
+++ /dev/null
@@ -1,3 +0,0 @@
-FROM nginx:1.18
-EXPOSE 8080
-ADD nginx.conf /etc/nginx/conf.d/helios.conf
diff --git a/nginx.conf b/nginx.conf
deleted file mode 100644
index c574030eebbc2d6fe6e9827494fbb3c12026f566..0000000000000000000000000000000000000000
--- a/nginx.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-upstream helios {
-    ip_hash;
-    server app:8000;
-}
-
-server {
-    server_name helios;
-    listen 8080;
-
-    client_max_body_size 10M;
-
-    proxy_connect_timeout   60;
-    proxy_send_timeout      60;
-    proxy_read_timeout      60;
-    send_timeout            60;
-
-    location / {
-        proxy_pass http://helios/;
-        proxy_set_header Host $host;
-        proxy_set_header X-Forwarded-Proto https;
-        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
-    }
-}