-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from runtimeverification/develop
title
- Loading branch information
Showing
3 changed files
with
52 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
http { | ||
access_log off; | ||
include /etc/nginx/conf.d/*.conf; | ||
server_names_hash_bucket_size 128; | ||
} | ||
|
||
events { | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
server { | ||
listen 80; | ||
server_name $HOST; | ||
|
||
location /.well-known/acme-challenge/ { | ||
alias /var/www/$HOST/.well-known/acme-challenge/; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
server { | ||
listen 80; | ||
server_name $HOST; | ||
|
||
location /.well-known/acme-challenge/ { | ||
alias /var/www/$HOST/.well-known/acme-challenge/; | ||
} | ||
|
||
rewrite ^(.*) https://$server_name$1 permanent; | ||
} | ||
|
||
server { | ||
listen 443 ssl; | ||
server_name $HOST; | ||
access_log off; | ||
proxy_set_header Upgrade $http_upgrade; | ||
proxy_set_header Connection "Upgrade"; | ||
proxy_set_header Host $host; | ||
proxy_set_header Authorization $http_authorization; | ||
proxy_pass_header Authorization; | ||
client_max_body_size 300m; | ||
ssl_certificate /etc/nginx/ssl/$HOST/fullchain.pem; | ||
ssl_certificate_key /etc/nginx/ssl/$HOST/key.pem; | ||
ssl_trusted_certificate /etc/nginx/ssl/$HOST/chain.pem; | ||
|
||
location / { | ||
proxy_pass http://0.0.0.0:$FRONTEND_PORT; | ||
} | ||
location ~ ^/oauth/github/callback/to/(pr-.*)?(.*)$ { | ||
return 302 $scheme://$HOST/oauth/github/callback?$args; | ||
} | ||
location ~ ^/(graphql|api|oauth)(.*?)$ { | ||
proxy_pass http://0.0.0.0:$BACKEND_PORT/$1$2$is_args$args; | ||
} | ||
} |