Spaces:
Sleeping
Sleeping
lucianotonet
commited on
Commit
·
343055a
1
Parent(s):
55dc504
Try to fix root path
Browse files- Dockerfile +1 -1
- Procfile +1 -1
- app/server.py +1 -1
Dockerfile
CHANGED
@@ -18,4 +18,4 @@ RUN poetry install --no-interaction --no-ansi
|
|
18 |
|
19 |
EXPOSE 7860
|
20 |
|
21 |
-
CMD exec uvicorn app.server:app --host 0.0.0.0 --port 7860 --root-path /api/ai
|
|
|
18 |
|
19 |
EXPOSE 7860
|
20 |
|
21 |
+
CMD exec uvicorn app.server:app --host 0.0.0.0 --port 7860 --root-path "https://app.agenciamav.com.br/api/ai"
|
Procfile
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
web: uvicorn app.server:app --host 0.0.0.0 --port $PORT --root-path /api/ai
|
2 |
|
|
|
1 |
+
web: uvicorn app.server:app --host 0.0.0.0 --port $PORT --root-path "https://app.agenciamav.com.br/api/ai"
|
2 |
|
app/server.py
CHANGED
@@ -35,4 +35,4 @@ add_routes(
|
|
35 |
if __name__ == "__main__":
|
36 |
import uvicorn
|
37 |
|
38 |
-
uvicorn.run(app, host="localhost", port=7860, root_path="/api/ai")
|
|
|
35 |
if __name__ == "__main__":
|
36 |
import uvicorn
|
37 |
|
38 |
+
uvicorn.run(app, host="localhost", port=7860, root_path="https://app.agenciamav.com.br/api/ai")
|