Is it possible to deploy the static resources of superset-frontend independently in nginx? #30684
Replies: 1 comment
-
Hey @ascendlin! I'm here to help you with any issues or questions you have. I'm a bot designed to assist with bug fixes, troubleshooting, and contributions. Let me know how I can assist you! I found a similar unsolved discussion on separating To deploy the static resources of Unfortunately, I couldn't find specific Nginx configuration examples in the repository, but generally, you would do something like this in your Nginx configuration: server {
listen 80;
server_name your_domain.com;
location /static/ {
alias /path/to/your/static/assets/;
}
} This configuration serves static files from the |
Beta Was this translation helpful? Give feedback.
-
Is it possible to deploy the static resources of superset-frontend independently in nginx?
Beta Was this translation helpful? Give feedback.
All reactions