-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
running a dash app below a segment (e.g. http://corporateserver.com/approotisreallythere) #179
Comments
Right now, this is done through the
or
However, as you mention, this isn't really well documented at all. I'd prefer a solution that would generically handle all of the I think 2 seems like a reasonable approach to me, however the call signature might become really huge over time. That might not be a bad thing (for example, I actually like the huge call signature of |
Ah yes indeed I almost saw this :) Thanks for the clarification. |
Add `allow` prop to html.Iframe
* - listview styling - column name nested prop update (support array of strings) - fix errors in demo app * bump version, update changelog * revert demo change
* - listview styling - column name nested prop update (support array of strings) - fix errors in demo app * bump version, update changelog * revert demo change
Add `allow` prop to html.Iframe
Hi all,
In some setups (corporate env ...) we have no choice but to run a dash app under an application-specific segment. I believe this is currently not supported.
While a specific nginx / wsgi combo is currently used to inform the flask app of this condition, it does not work for dash as the web client routes are configured before the first http request is seen (in dash.
__init__
).This hack can be seen there : http://flask.pocoo.org/snippets/35/
Here is the patch I've written to clear the issue on dash side:
This is quite simple and might be enough. To make it more transparent would probably demand much more work I think.
Opinions ?
The text was updated successfully, but these errors were encountered: