Spaces:
Runtime error
Runtime error
Commit
·
1992d6a
1
Parent(s):
a6a74d4
Update app.py
Browse files
app.py
CHANGED
@@ -100,11 +100,11 @@ def run_app(model_filename, config_filename, port, concurrency_count, max_size):
|
|
100 |
app.queue(concurrency_count=concurrency_count, max_size=max_size)
|
101 |
|
102 |
app.launch(
|
103 |
-
|
104 |
server_name='0.0.0.0',
|
105 |
server_port=port,
|
106 |
-
|
107 |
-
|
108 |
)
|
109 |
|
110 |
|
|
|
100 |
app.queue(concurrency_count=concurrency_count, max_size=max_size)
|
101 |
|
102 |
app.launch(
|
103 |
+
# ssl_verify=False,
|
104 |
server_name='0.0.0.0',
|
105 |
server_port=port,
|
106 |
+
# ssl_keyfile='certificates/example.key',
|
107 |
+
# ssl_certfile='certificates/example.crt',
|
108 |
)
|
109 |
|
110 |
|