Source incoming :)

This commit is contained in:
2021-12-12 07:06:51 +00:00
parent 415f50ce1e
commit 907bf2206f
50 changed files with 2918 additions and 0 deletions

24
contrib/nginx.conf Normal file
View File

@@ -0,0 +1,24 @@
# This is my nginx configuration
# Yours will look different. This is just an example.
server {
listen 80;
listen [::]:80;
server_name drewdevault.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl spdy;
listen [::]:443 ssl spdy default_server ipv6only=on;
server_name drewdevault.com;
location / {
proxy_pass http://sircmpwn.github.io;
proxy_redirect http:// https://;
}
location /donate/ {
proxy_pass http://127.0.0.1:5000/;
}
}