nginx http and www redirects

This commit is contained in:
2023-01-29 11:11:08 -06:00
parent 580bcb704f
commit 1a7612a976

View File

@@ -1,6 +1,10 @@
server {
listen 8080;
server_name _;
return 301 https://asimonson.com$request_uri
location / {
proxy_pass http://localhost:5000/;
proxy_set_header Host $host;