impress/deploy/files/sites-available/openneo-home.conf
Emi Matchu e178505d2d Add redirect from openneo.net to impress.openneo.net
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!
2024-02-20 10:35:59 -08:00

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}}/;
}
}