Skip to content

Commit

Permalink
πŸŽ‰ Initial Commit
Browse files Browse the repository at this point in the history
Signed-off-by: Teakowa <27560638+Teakowa@users.noreply.github.com>
  • Loading branch information
Teakowa committed Apr 8, 2024
1 parent e8c404b commit 87d3f9c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .docker/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ upstream v {


server {
listen 80 default_server;
server_name localhost;
listen 443 default_server;
server_name cdn.14159.mov;

error_log /var/log/nginx/rewrite.log notice;
rewrite_log on;
Expand All @@ -21,6 +21,14 @@ server {
resolver 8.8.8.8 8.8.4.4 valid=300s;
resolver_timeout 5s;

ssl_certificate /etc/nginx/ssl/14159.mov/fullchain.cer;
ssl_certificate_key /etc/nginx/ssl/14159.mov/14159.mov.key;

ssl_certificate /etc/nginx/ssl/14159.mov_ecc/fullchain.cer;
ssl_certificate_key /etc/nginx/ssl/14159.mov_ecc/14159.mov.key;

keepalive_timeout 70;

location = / {
return 418;
}
Expand Down

0 comments on commit 87d3f9c

Please sign in to comment.