Spaces:
Running
Running
apple muncy
commited on
Commit
·
75f5b6d
1
Parent(s):
cd3df42
move port 8443 to 7860
Browse filesSigned-off-by: apple muncy <[email protected]>
- auth_server.py +3 -3
auth_server.py
CHANGED
@@ -35,9 +35,9 @@ class AuthServerSettings(BaseModel):
|
|
35 |
|
36 |
# Server settings
|
37 |
host: str = "applemuncy-as.hf.space"
|
38 |
-
port: int =
|
39 |
-
server_url: AnyHttpUrl = AnyHttpUrl("https://applemuncy-as.hf.space")
|
40 |
-
auth_callback_path: str = "https://applemuncy-as.hf.space:
|
41 |
|
42 |
|
43 |
class SimpleAuthProvider(SimpleOAuthProvider):
|
|
|
35 |
|
36 |
# Server settings
|
37 |
host: str = "applemuncy-as.hf.space"
|
38 |
+
port: int = 7860
|
39 |
+
server_url: AnyHttpUrl = AnyHttpUrl("https://applemuncy-as.hf.space:7860")
|
40 |
+
auth_callback_path: str = "https://applemuncy-as.hf.space:7860/login/callback"
|
41 |
|
42 |
|
43 |
class SimpleAuthProvider(SimpleOAuthProvider):
|