aboutsummaryrefslogtreecommitdiffhomepage
path: root/nginx.conf
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-10-26 19:21:31 +0900
committernsfisis <nsfisis@gmail.com>2022-10-26 19:21:31 +0900
commitdff1aa8f687c52412f66277d32f7fd786cce6fa0 (patch)
treee143ba4fbbd56c40c44686551e82a3127099d202 /nginx.conf
parent7a2c33d6042bbd285c9bfa19f2c4c262bca95fcc (diff)
downloadblog.nsfisis.dev-dff1aa8f687c52412f66277d32f7fd786cce6fa0.tar.gz
blog.nsfisis.dev-dff1aa8f687c52412f66277d32f7fd786cce6fa0.tar.zst
blog.nsfisis.dev-dff1aa8f687c52412f66277d32f7fd786cce6fa0.zip
add docker conf
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf10
1 files changed, 10 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000..12fcd32
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,10 @@
+server {
+ listen 80 default;
+ listen [::]:80;
+
+ location / {
+ root /public;
+ }
+
+ error_page 404 /404.html;
+}