Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-09-08 18:04:03 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-02-15 15:00:19 +0300
commitf8501806242e4425b531e97e67f842ebb351a8f6 (patch)
treee18f4f7062a8f024478ed6d06d76a0458853895d /dockerfiles/nginx-overrides.conf
parent785008677aaa61a1db50540d800dd4fd306f6877 (diff)
Add Dockerfiles that will help build a versioned website
Diffstat (limited to 'dockerfiles/nginx-overrides.conf')
-rw-r--r--dockerfiles/nginx-overrides.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/dockerfiles/nginx-overrides.conf b/dockerfiles/nginx-overrides.conf
new file mode 100644
index 00000000..7564d0c9
--- /dev/null
+++ b/dockerfiles/nginx-overrides.conf
@@ -0,0 +1,9 @@
+server {
+ port_in_redirect off;
+ listen 4000;
+ error_page 403 404 /404.html;
+ location / {
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+ }
+} \ No newline at end of file