-
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.
feat(boilerplate): add reverse proxy
- Loading branch information
Showing
3 changed files
with
28 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,15 @@ | ||
api.guidebook.localhost { | ||
reverse_proxy localhost:3000 | ||
} | ||
|
||
app.guidebook.localhost { | ||
reverse_proxy localhost:5173 | ||
} | ||
|
||
mailbox.guidebook.localhost { | ||
reverse_proxy localhost:8025 | ||
} | ||
|
||
storage.articulate.localhost { | ||
reverse_proxy localhost:8069 | ||
} |
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,6 @@ | ||
{ | ||
"name": "guidebook_development_reverse_proxy", | ||
"scripts": { | ||
"dev": "caddy run" | ||
} | ||
} |
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,7 @@ | ||
# Reverse Proxy | ||
|
||
This allows us for custom domains and out of the box https. | ||
|
||
Installation can be found here: https://caddyserver.com/docs/install#homebrew-mac | ||
After installing you must first run it by hand in this folder for configuration. | ||
From this point it will automatcally start with Turborepo's `pnpm dev` |