Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=1.5.0
VERSION=1.5.1
17 changes: 11 additions & 6 deletions nginx/default.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
root /usr/share/nginx/html;
listen 80;
return 301 https://$host$request_uri;
}

server {
listen 443 ssl;
location / {
try_files $uri $uri/ =404;
root /usr/share/nginx/html;
index index.html index.html;
try_files $uri $uri/ /index.html;
}
}

ssl_certificate /etc/nginx/nginx.crt;
ssl_certificate_key /etc/nginx/nginx.key;
}
Loading