vikunja/docs/nginx.conf

34 lines
707 B
Nginx Configuration File
Raw Permalink Normal View History

2019-02-17 19:53:04 +00:00
server {
listen 80;
server_name localhost;
charset utf-8;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 404 /docs/404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
2019-03-24 18:38:12 +00:00
location /docs/contact {
return 301 $scheme://vikunja.io/en/contact;
}
location /docs/docs {
return 301 $scheme://vikunja.io/docs;
}
2024-02-09 19:34:41 +00:00
location /docs/install-backend {
2024-02-09 19:35:58 +00:00
return 301 $scheme://vikunja.io/docs/installing;
2024-02-09 19:34:41 +00:00
}
location /docs/install-frontend {
2024-02-09 19:35:58 +00:00
return 301 $scheme://vikunja.io/docs/installing;
}
2019-02-17 19:53:04 +00:00
}