blob: 7d029d217156bafc808a16b17054c5267ca577c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80 default_server;
server_name _;
root /var/www;
index index.html;
# Migration redirects from legacy site
location ~ ^/archive(?:/(.*))?$ {
return 302 /posts/$1$is_args$args;
}
location = /feed.xml {
return 302 /atom.xml;
}
location / {
try_files $uri $uri.html $uri/ =404;
}
}
}
|