From e4eeddcbf486777d8a4d73ccdafdb3d1ea6cb359 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sun, 2 Apr 2023 11:37:58 -0400 Subject: [PATCH] Add custom nginx conf --- Dockerfile | 3 ++- default.conf | 31 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 default.conf diff --git a/Dockerfile b/Dockerfile index 6130757..db62532 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,3 @@ FROM nginx -COPY html/ /usr/share/nginx/html \ No newline at end of file +COPY html/ /usr/share/nginx/html +COPY default.conf /etc/nginx/nginx.d/default.conf diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..8ea3c2b --- /dev/null +++ b/default.conf @@ -0,0 +1,31 @@ +server { + listen 80 default_server; + + listen 443 ssl; + + root /config/www; + index index.html index.htm index.php; + + server_name _; + + ssl_certificate /config/keys/cert.crt; + ssl_certificate_key /config/keys/cert.key; + + client_max_body_size 0; + + location / { + if ($request_uri ~ ^/(.*)\.html) { + return 302 /$1; + } + try_files $uri $uri.html $uri/ =404; + } + + location ~ ^(.+\.php)(.*)$ { + fastcgi_split_path_info ^(.+\.php)(.*)$; + fastcgi_pass 127.0.0.1:9000; + fastcgi_index index.php; + include /etc/nginx/fastcgi_params; + } + + error_page 404 /404-error.html; +}