summaryrefslogtreecommitdiffhomepage
path: root/services/blog/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'services/blog/nginx.conf')
-rw-r--r--services/blog/nginx.conf41
1 files changed, 41 insertions, 0 deletions
diff --git a/services/blog/nginx.conf b/services/blog/nginx.conf
new file mode 100644
index 00000000..eb1d9136
--- /dev/null
+++ b/services/blog/nginx.conf
@@ -0,0 +1,41 @@
+server {
+ listen 8001 default;
+ listen [::]:8001;
+
+ location / {
+ root /public;
+
+ location ~* ^.*/atom\.xml$ {
+ types { }
+ default_type "application/atom+xml; charset=utf-8";
+ }
+
+ location ~* \.mjs$ {
+ types { }
+ default_type "application/javascript; charset=utf-8";
+ }
+ }
+
+ error_page 404 /404.html;
+
+ # Redirect to canonical path.
+ rewrite ^/posts/1/?$ /posts/ permanent;
+
+ # Old URL patterns.
+ rewrite ^/posts/(my-first-post)/?$ /posts/2021-03-05/$1/ permanent;
+ rewrite ^/posts/(phperkaigi-2021)/?$ /posts/2021-03-30/$1/ permanent;
+ rewrite ^/posts/(cpp-you-can-use-keywords-in-attributes)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(python-unbound-local-error)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(ruby-detect-running-implementation)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(ruby-then-keyword-and-case-in)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(rust-where-are-primitive-types-from)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(vim-difference-between-autocmd-bufwrite-and-bufwritepre)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(vim-swap-order-of-selected-lines)/?$ /posts/2021-10-02/$1/ permanent;
+ rewrite ^/posts/(phperkaigi-2022-tokens)/?$ /posts/2022-04-09/$1/ permanent;
+
+ # I mistakenly wrote 2023 in the URL instead of 2024.
+ rewrite ^/posts/2023-01-10/(neovim-insert-namespace-declaration-to-empty-php-file)/?$ /posts/2024-01-10/$1/ permanent;
+
+ # Renamed posts.
+ rewrite ^/posts/2024-03-20/todos-in-my-life/?$ /posts/2024-03-20/my-bucket-list/ permanent;
+}