Content plugin are not available in the user workspace. #310
-
Hi, I have deployed sunbird ed but on creator user workspace plugin are not available. Jobs to deploy content-plugins Deploy/dev/Plugins/ContentPlugins. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Changes made in the nginx.conf ensure
|
Beta Was this translation helpful? Give feedback.
Changes made in the nginx.conf ensure
proxy_set_header Host storage.googleapis.com;
location ~* ^/generic-editor/(.*) { # Enabling compression gzip on; gzip_min_length 100000; gzip_proxied expired no-cache no-store private auth; gzip_types application/javascript application/x-javascript text/css text/javascript; if ($request_method = OPTIONS ) { add_header Access-Control-Allow-Origin "*" ; add_header Access-Control-Allow-Methods "GET, OPTIONS, PATCH, POST"; add_header Access-Control-Allow-Headers "Access-Control-Allow-Origin, Authorization, Content-Type, user-id"; # add_header Access-Control-Allow-Credentials "true"; add_header Content-Length 0; add_header Content-Type text/plain; return…