-
DescriptionHi, I finally got my app deployed on IIS, and the page renders fine from the web server, but none of the controls are clickable. Tab panels , switches, etc. are all dead clicks. There is a select i'm populating that is showing values when clicked, but selecting one does nothing. Any ideas? Here is my main.py: def init(fastapi_app: FastAPI):
ui.run_with(
fastapi_app,
)
fapp = FastAPI()
init(fapp)
def run_app():
uvicorn.run("app.main:app", log_level="info") web.config is defined as:
I should note that it runs completely fine locally. So close yet so far... Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Does anyone from the community have experience with hosting FastAPI/NiceGUI apps on Microsoft IIS Web servers? |
Beta Was this translation helpful? Give feedback.
-
I was able to resolve this by enabling websockets in IIS, setting it as an allowed server variable and setting the value via the web.config: https://www.oxygenxml.com/doc/versions/26.1.0/ug-waCustom/topics/WA-websocket.html |
Beta Was this translation helpful? Give feedback.
I was able to resolve this by enabling websockets in IIS, setting it as an allowed server variable and setting the value via the web.config:
https://www.oxygenxml.com/doc/versions/26.1.0/ug-waCustom/topics/WA-websocket.html