Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions app/frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ export default defineConfig({
},
server: {
proxy: {
"/content/": "http://localhost:50505",
"/auth_setup": "http://localhost:50505",
"/.auth/me": "http://localhost:50505",
"/ask": "http://localhost:50505",
"/chat": "http://localhost:50505",
"/speech": "http://localhost:50505",
"/config": "http://localhost:50505",
"/upload": "http://localhost:50505",
"/delete_uploaded": "http://localhost:50505",
"/list_uploaded": "http://localhost:50505"
"/content/": "http://127.0.0.1:50505",
"/auth_setup": "http://127.0.0.1:50505",
"/.auth/me": "http://127.0.0.1:50505",
"/ask": "http://127.0.0.1:50505",
"/chat": "http://127.0.0.1:50505",
"/speech": "http://127.0.0.1:50505",
"/config": "http://127.0.0.1:50505",
"/upload": "http://127.0.0.1:50505",
"/delete_uploaded": "http://127.0.0.1:50505",
"/list_uploaded": "http://127.0.0.1:50505"
}
}
});
2 changes: 2 additions & 0 deletions docs/deploy_private.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

If you want to disable public access when deploying the Chat App, you can do so by setting `azd` environment values.

[📺 Watch a video overview of the VM provisioning process](https://www.youtube.com/watch?v=RbITd0a5who)

## Before you begin

Deploying with public access disabled adds additional cost to your deployment. Please see pricing for the following products:
Expand Down
Loading