Browse Source
Enable instrumentation by default in WSGI and ASGI examples
pull/1430/head
Miguel Grinberg
3 months ago
Failed to extract signature
2 changed files with
22 additions and
2 deletions
-
examples/server/asgi/app.py
-
examples/server/wsgi/app.py
|
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
# set instrument to `True` to accept connections from the official Socket.IO |
|
|
|
# Admin UI hosted at https://admin.socket.io |
|
|
|
instrument = False |
|
|
|
instrument = True |
|
|
|
admin_login = { |
|
|
|
'username': 'admin', |
|
|
|
'password': 'python', # change this to a strong secret for production use! |
|
|
@ -93,4 +93,14 @@ def test_disconnect(sid, reason): |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
if instrument: |
|
|
|
print('The server is instrumented for remote administration.') |
|
|
|
print( |
|
|
|
'Use the official Socket.IO Admin UI at https://admin.socket.io ' |
|
|
|
'with the following connection details:' |
|
|
|
) |
|
|
|
print(' - Server URL: http://localhost:5000') |
|
|
|
print(' - Username:', admin_login['username']) |
|
|
|
print(' - Password:', admin_login['password']) |
|
|
|
print('') |
|
|
|
uvicorn.run(app, host='127.0.0.1', port=5000) |
|
|
|
|
|
@ -5,7 +5,7 @@ async_mode = None |
|
|
|
|
|
|
|
# set instrument to `True` to accept connections from the official Socket.IO |
|
|
|
# Admin UI hosted at https://admin.socket.io |
|
|
|
instrument = False |
|
|
|
instrument = True |
|
|
|
admin_login = { |
|
|
|
'username': 'admin', |
|
|
|
'password': 'python', # change this to a strong secret for production use! |
|
|
@ -99,6 +99,16 @@ def disconnect(sid, reason): |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
if instrument: |
|
|
|
print('The server is instrumented for remote administration.') |
|
|
|
print( |
|
|
|
'Use the official Socket.IO Admin UI at https://admin.socket.io ' |
|
|
|
'with the following connection details:' |
|
|
|
) |
|
|
|
print(' - Server URL: http://localhost:5000') |
|
|
|
print(' - Username:', admin_login['username']) |
|
|
|
print(' - Password:', admin_login['password']) |
|
|
|
print('') |
|
|
|
if sio.async_mode == 'threading': |
|
|
|
# deploy with Werkzeug |
|
|
|
app.run(threaded=True) |
|
|
|