forked from OpenNeo/impress
Emi Matchu
e178505d2d
The homepage used to point to old projects that don't work anymore anyway! This is the only project that stuck, so just redirect here! We also remove the openneo.net link from the footer, because there's nothing useful to say there anymore!
11 lines
176 B
Text
11 lines
176 B
Text
server {
|
|
server_name openneo.net;
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
location / {
|
|
return 302 https://{{impress_hostname}}/;
|
|
}
|
|
}
|