...
Code Block | ||
---|---|---|
| ||
obsidian-devportal:
image: xxx
container_name: joshn-doe-api-shop
ports:
- "3009:443"
environment:
BACKEND_URL: https://localhost:8080
# To disable the insertion of the tenant ID the string must not contain 'addTenantIdToBack'.
INSERT_TENANT_ID: doNotInsertIt
DEV_PORTAL_TOKEN: vpfw2d823h8uQRN
TINY_EDITOR_API_KEY: YourEditorKey
# ssl configuration - here you can mount your certificate in the container and if you want, also change the whole nginx configuration.
# volumes:
# - ./frontend.crt:/etc/ssl/certs/devportal.crt
# - ./frontend.key:/etc/ssl/private/devportal.key
# http://nginx.org/en/docs/
# - ./nginx.conf:/etc/nginx/conf.d/default.conf |
...
Variable | Default Value | Description |
---|---|---|
| The public URL of your Control Plane backend. This must be accessible from your webbrowser. | |
| The link to the support portal. Is displayed as a button in the main menu and on the 'Not Found' page. | |
| 0qPG7xXzm65SnioUM2fK | The token of the Developer Portal. You can find this in the Administrations Portal. |
| addTenantIdToBackendUrl | To disable the insertion of the tenant ID the string must not contain 'addTenantIdToBack'. |
| 443 | Nginx Port with SSL. |
| 80 | Nginx Port with out SSL. |
| You must create and provide your own tiny api key here. This is free of charge! https://www.tiny.cloud/blog/how-to-get-tinymce-cloud-up-in-less-than-5-minutes/ |
That's it. Go to your new Developer Portal.
...