-
-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into nexy7574/remove-fallback-replies
- Loading branch information
Showing
263 changed files
with
16,405 additions
and
9,547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
server_name cinny.domain.tld; | ||
listen 80; | ||
listen [::]:80; | ||
server_name cinny.domain.tld; | ||
|
||
location / { | ||
return 301 https://$host$request_uri; | ||
} | ||
location / { | ||
return 301 https://$host$request_uri; | ||
} | ||
|
||
location /.well-known/acme-challenge/ { | ||
alias /var/lib/letsencrypt/.well-known/acme-challenge/; | ||
} | ||
location /.well-known/acme-challenge/ { | ||
alias /var/lib/letsencrypt/.well-known/acme-challenge/; | ||
} | ||
} | ||
|
||
server { | ||
listen 443 ssl http2; | ||
listen [::]:443 ssl; | ||
server_name cinny.domain.tld; | ||
listen 443 ssl http2; | ||
listen [::]:443 ssl; | ||
server_name cinny.domain.tld; | ||
|
||
location / { | ||
root /opt/cinny/dist/; | ||
location / { | ||
root /opt/cinny/dist/; | ||
|
||
rewrite ^/config.json$ /config.json break; | ||
rewrite ^/manifest.json$ /manifest.json break; | ||
rewrite ^/config.json$ /config.json break; | ||
rewrite ^/manifest.json$ /manifest.json break; | ||
|
||
rewrite ^.*/olm.wasm$ /olm.wasm break; | ||
rewrite ^/sw.js$ /sw.js break; | ||
rewrite ^/pdf.worker.min.js$ /pdf.worker.min.js break; | ||
rewrite ^.*/olm.wasm$ /olm.wasm break; | ||
rewrite ^/sw.js$ /sw.js break; | ||
rewrite ^/pdf.worker.min.js$ /pdf.worker.min.js break; | ||
|
||
rewrite ^/public/(.*)$ /public/$1 break; | ||
rewrite ^/assets/(.*)$ /assets/$1 break; | ||
rewrite ^/public/(.*)$ /public/$1 break; | ||
rewrite ^/assets/(.*)$ /assets/$1 break; | ||
|
||
rewrite ^(.+)$ /index.html break; | ||
} | ||
rewrite ^(.+)$ /index.html break; | ||
} | ||
} |
Oops, something went wrong.