このページは、まだ日本語ではご利用いただけません。翻訳中です。
旧バージョンのドキュメントを参照しています。 最新のドキュメントはこちらをご参照ください。
How To Enable the Dev Portal
Enable Dev Portal in the Kong Configuration or within a Docker container for Docker installations.
Enable Dev Portal in the Kong Configuration
-
To enable the Dev Portal, the following properties must be set in the Kong configuration file (
kong.conf
):portal = on
Kong Gateway must be restarted for this value to take effect.
-
Enable the default Workspace Dev Portal via Kong Manager:
- Navigate to the default Workspace in Kong Manager
- Click the Settings link under Dev Portal
- Toggle the Dev Portal Switch
It may take a few seconds for the Settings page to populate.
To enable the default Workspace’s Dev portal via the command line:
curl -X PATCH http://localhost:8001/workspaces/default --data "config.portal=true"
- This will expose the default Dev Portal at http://localhost:8003/default
- The Dev Portal Files endpoint can be accessed at
:8001/files
- The Public Dev Portal Files API can be accessed at
:8004/files
Enable Dev Portal with Docker installation
This feature is only available with a Kong Konnect Enterprise subscription.
-
In your Docker container, set the Portal URL and set
KONG_PORTAL
toon
:echo "KONG_PORTAL_GUI_HOST=localhost:8003 KONG_PORTAL=on kong reload exit" \ | docker exec -i kong /bin/sh
The
HOSTNAME
forKONG_PORTAL_GUI_HOST
should not be preceded by a protocol, for example,http://
. -
Execute the following command:
curl -X PATCH --url http://localhost:8001/workspaces/default \ --data "config.portal=true"
-
Access the Dev Portal for the default workspace using the URL specified in the
KONG_PORTAL_GUI_HOST
variable:http://localhost:8003/default