summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'vhosts/blog/nginx.conf')
-rw-r--r--vhosts/blog/nginx.conf21
1 files changed, 21 insertions, 0 deletions
diff --git a/vhosts/blog/nginx.conf b/vhosts/blog/nginx.conf
new file mode 100644
index 00000000..7b84774b
--- /dev/null
+++ b/vhosts/blog/nginx.conf
@@ -0,0 +1,21 @@
+server {
+ listen 80 default;
+ listen [::]:80;
+
+ location / {
+ root /public;
+ }
+
+ error_page 404 /404.html;
+
+ 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;
+}