blob: 4b4381b359fd53d0231c1e62eed7c119d155274c (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_proxied expired no-cache no-store private auth;
map $sent_http_content_type $expires {
default off;
text/css 15m;
application/javascript 15m;
~image/ 15m;
}
server{
server_name jozanofastora.xyz;
expires $expires;
location / {
root /usr/local/www/jozan;
try_files $uri $uri/ =404;
index index.html;
}
location ~ /\.ht {
deny all;
}
error_page 403 /403.html;
location = /403.html {
root /usr/local/www/jozan/err;
}
error_page 404 /404.html;
location = /404.html {
root /usr/local/www/jozan/err;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/www/nginx-dist;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /usr/local/etc/letsencrypt/live/jozanofastora.xyz-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /usr/local/etc/letsencrypt/live/jozanofastora.xyz-0001/privkey.pem; # managed by Certbot
include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server{
server_name gitjoe.xyz git.jozanofastora.xyz;
expires $expires;
location / {
root /usr/local/www/gitjoe;
index index.html;
try_files $uri $uri/ =404;
}
location ~ /\.ht {
deny all;
}
error_page 403 /403.html;
location = /403.html {
root /usr/local/www/gitjoe/err;
}
error_page 404 /404.html;
location = /404.html {
root /usr/local/www/gitjoe/err;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/www/nginx-dist;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /usr/local/etc/letsencrypt/live/jozanofastora.xyz-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /usr/local/etc/letsencrypt/live/jozanofastora.xyz-0001/privkey.pem; # managed by Certbot
include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
listen 80;
server_name cgit.gitjoe.xyz;
root /usr/local/www/cgit;
# Serve static files with nginx
location ~* ^.+(cgit.(css|png)|favicon.ico|robots.txt) {
root /usr/local/www/cgit;
expires 30d;
}
location / {
try_files $uri @cgit;
}
location @cgit {
gzip off;
include uwsgi_params;
uwsgi_modifier1 9;
uwsgi_pass unix:/var/run/uwsgi/cgit.sock;
}
}
server {
server_name fossil.jozanofastora.xyz;
index index.html;
root /usr/local/www/fossiljoe;
# Bypass Fossil for the static documentation generated from
# our source code by Doxygen, so it merges into the embedded
# doc URL hierarchy at Fossil’s $ROOT/doc without requiring that
# these generated files actually be stored in the repo. This
# also lets us set aggressive caching on these docs, since
# they rarely change.
location /code/doc/html {
root /usr/local/www/fossiljoe;
location ~* \.(html|ico|css|js|gif|jpg|png)$ {
expires 7d;
add_header Vary Accept-Encoding;
access_log off;
}
}
# Redirect everything else to the Fossil instance
location /code {
include scgi_params;
scgi_param SCRIPT_NAME "/code";
scgi_pass 127.0.0.1:12345;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /usr/local/etc/letsencrypt/live/jozanofastora.xyz-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /usr/local/etc/letsencrypt/live/jozanofastora.xyz-0001/privkey.pem; # managed by Certbot
include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; # managed by Ce/srvrtbot
ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; # managed by Cert/srvbot
}
server{
if ($host = git.jozanofastora.xyz) {
return 301 https://gitjoe.xyz$request_uri;
} # managed by Certbot
if ($host = www.gitjoe.xyz) {
return 301 https://gitjoe.xyz$request_uri;
} # managed by Certbot
if ($host = gitjoe.xyz) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name gitjoe.xyz;
listen 80;
return 404; # managed by Certbot
}
server{
if ($host = www.jozanofastora.xyz) {
return 301 https://jozanofastora.xyz$request_uri;
} # managed by Certbot
if ($host = jozanofastora.xyz) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name jozanofastora.xyz;
listen 80;
return 404; # managed by Certbot
}
server {
if ($host = fossil.jozanofastora.xyz) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name fossil.jozanofastora.xyz;
listen 80;
return 404; # managed by Certbot
}
}
|