Skip to content

Commit

Permalink
fifoci: .dolphin-emu.org -> fifo.ci
Browse files Browse the repository at this point in the history
  • Loading branch information
delroth committed Apr 28, 2020
1 parent 0bea09a commit 9d2ba6d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions etc/fifoci.nginx
@@ -1,8 +1,10 @@
server {
listen 443 ssl;
server_name fifoci.dolphin-emu.org fifoci.dolphin-emu.net;
listen [::]:443 ssl;

server_name fifo.ci;

access_log logs/fifoci.access.log main;
access_log /etc/nginx/logs/fifoci.access.log main;

# FifoCI admins need to upload large DFF files, up to 100MB. Put a
# deliberately high limit here.
Expand All @@ -23,3 +25,15 @@ server {
expires 30d;
}
}

server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;

server_name fifoci.dolphin-emu.org fifoci.dolphin-emu.net;

return 301 https://fifo.ci$request_uri;
}

2 changes: 1 addition & 1 deletion frontend/fifoci/settings/base.py
Expand Up @@ -30,7 +30,7 @@
DEBUG = False
TEMPLATE_DEBUG = False

ALLOWED_HOSTS = ['fifoci.dolphin-emu.org']
ALLOWED_HOSTS = ['fifo.ci']


# Application definition
Expand Down

0 comments on commit 9d2ba6d

Please sign in to comment.