web/www.conf

24 lines
957 B
Plaintext
Raw Normal View History

2024-04-30 22:36:48 +00:00
# -*- mode: nginx; nginx-indent-level: 4; intent-tabs-mode: nil -*-
server {
server_name www.mothstuff.lol www.umorpha.io;
include /etc/nginx/snippets/listen.conf;
error_log /var/log/nginx/main-error.http.www.log error;
root /srv/http/www.umorpha.io;
2024-05-03 04:56:12 +00:00
2024-04-30 22:36:48 +00:00
location /ohs2024/MakersOfTheBuiltEnvironment_OHS2024.pdf {
add_header Content-Disposition 'attachment; filename="MakersOfTheBuiltEnvironment_OHS2024.pdf"';
}
2024-05-03 04:56:12 +00:00
location /ohs2024/MakersOfTheBuiltEnvironment_OHS2024.odp {
add_header Content-Disposition 'attachment; filename="MakersOfTheBuiltEnvironment_OHS2024.odp"';
}
2024-06-03 17:13:48 +00:00
location /his2024/PitchfestUmorphaSystems_HIS2024.pdf {
add_header Content-Disposition 'attachment; filename="PitchfestUmorphaSystems_HIS2024.pdf"';
}
location /his2024/PitchfestUmorphaSystems_HIS2024.odp {
add_header Content-Disposition 'attachment; filename="PitchfestUmorphaSystems_HIS2024.odp"';
}
2024-04-30 22:36:48 +00:00
}