diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-01 02:54:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-01 02:54:52 +0900 |
| commit | 6c4fdb80950795da54da5d9b267bd473c08222ea (patch) | |
| tree | fac6ee58214b3adcf5c6b731e572e91203f76137 | |
| parent | cd16ed5d6b46d91ae9ac7b2237d6405ad6715a4a (diff) | |
| download | nsfisis.dev-6c4fdb80950795da54da5d9b267bd473c08222ea.tar.gz nsfisis.dev-6c4fdb80950795da54da5d9b267bd473c08222ea.tar.zst nsfisis.dev-6c4fdb80950795da54da5d9b267bd473c08222ea.zip | |
fix(nginx): syntax error
| -rw-r--r-- | services/nuldoc/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/nuldoc/nginx.conf b/services/nuldoc/nginx.conf index 95eb1abc..7622f745 100644 --- a/services/nuldoc/nginx.conf +++ b/services/nuldoc/nginx.conf @@ -69,7 +69,7 @@ server { default_type "text/markdown; charset=utf-8"; } - location ~ ^(/posts/\d{4}-\d{2}-\d{2}/[^/]+)/$ { + location ~ "^(/posts/\d{4}-\d{2}-\d{2}/[^/]+)/$" { if ($prefer_markdown) { rewrite ^ $1.md last; } |
