{"id":13556917,"url":"https://github.com/operasoftware/dns-ui","last_synced_at":"2025-09-02T11:44:08.356Z","repository":{"id":16409460,"uuid":"79788127","full_name":"operasoftware/dns-ui","owner":"operasoftware","description":"Opera's LDAP-authenticated PowerDNS user interface","archived":false,"fork":false,"pushed_at":"2024-07-30T08:06:36.000Z","size":1059,"stargazers_count":286,"open_issues_count":63,"forks_count":59,"subscribers_count":27,"default_branch":"master","last_synced_at":"2025-04-03T10:38:14.949Z","etag":null,"topics":["powerdns","powerdns-authoritative-server","web-application"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/operasoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-23T09:08:49.000Z","updated_at":"2025-03-10T16:04:47.000Z","dependencies_parsed_at":"2023-12-27T17:29:51.772Z","dependency_job_id":"93814a3c-a6c5-4cca-a803-19f12a607ef9","html_url":"https://github.com/operasoftware/dns-ui","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/operasoftware/dns-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operasoftware%2Fdns-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operasoftware%2Fdns-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operasoftware%2Fdns-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operasoftware%2Fdns-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/operasoftware","download_url":"https://codeload.github.com/operasoftware/dns-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/operasoftware%2Fdns-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273279917,"owners_count":25077318,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["powerdns","powerdns-authoritative-server","web-application"],"created_at":"2024-08-01T12:04:04.962Z","updated_at":"2025-09-02T11:44:08.294Z","avatar_url":"https://github.com/operasoftware.png","language":"PHP","funding_links":[],"categories":["PHP","others"],"sub_categories":[],"readme":"Opera DNS UI\n============\n\nA tool to manage a PowerDNS authoritative server in a corporate LDAP-driven environment.\n\nFeatures\n--------\n\n* Connects to PowerDNS via its JSON API.\n* Allows login managed by LDAP server.\n* Create zones; add, edit and delete records.\n* Grant multiple users access to administer a zone.\n* Lower access level that allows to view a zone and *request* changes.\n* Provides its own JSON API for making changes to DNS records.\n* Keeps a changelog of all DNS changes done through it.\n* (Optionally) export all zones as bind-format zone files and store changes in git.\n\nDemo\n----\n\nYou can view the DNS UI in action on the [demonstration server](https://dnsui.xiven.com/).\n\nUse one of the following sets of username / password credentials to log in:\n\n* testuser / testuser - normal user with admin access granted to a few domains\n* testadmin / testadmin - admin user\n\nAll data on this demonstration server is reset nightly at 00:00 UTC.\n\nCompatibility\n-------------\n\nThe current version is only compatible with PowerDNS 4.0.4 and higher. Previous 4.0.x versions suffer from a critical API bug related to TTL values.\n\nAs another option, you can use PowerDNS 3 with\n[Opera DNS UI v0.1.3](https://github.com/operasoftware/dns-ui/releases/tag/v0.1.3), but the 0.1 version of the DNS UI will not receive any new features or non-critical fixes.\n\nRequirements\n------------\n\n* Apache 2.2.18+ / nginx\n* PHP 7.0+\n* PHP intl (Internationalization Functions) extension\n* PHP JSON extension\n* PHP CURL extension\n* PHP Multibyte String extension\n* PHP LDAP extension\n* PHP PDO_PGSQL extension\n* PostgreSQL database\n* PowerDNS authoritative server 4.0.4+\n\nInstallation\n------------\n\n1.  Configure PowerDNS:\n\n        webserver=yes\n        webserver-address=...\n        webserver-allow-from=...\n        webserver-port=...\n        api=yes\n        api-key=...\n\n2.  Clone this repo to somewhere *outside* of your default web server document root.\n\n3.  Create a postgresql user and database.\n\n        createuser -P dnsui-user\n        createdb -O dnsui-user dnsui-db\n\n4.  Add the following directives to your web server configuration (eg. virtual host config):\n\n    *   Apache:\n\n            DocumentRoot /path/to/dnsui/public_html\n            DirectoryIndex init.php\n            FallbackResource /init.php\n            AllowEncodedSlashes NoDecode\n\n        [Full Apache virtualhost example](https://github.com/operasoftware/dns-ui/wiki/Example-configuration:-apache)\n\n    *   nginx:\n\n            root /path/to/dnsui/public_html;\n            index init.php;\n            location / {\n                try_files $uri $uri/ @php;\n            }\n            location @php {\n                rewrite ^/(.*)$ /init.php/$1 last;\n            }\n            location /init.php {\n                fastcgi_pass unix:/run/php/php7.0-fpm.sock ;\n                include /etc/nginx/snippets/fastcgi-php.conf;\n            }\n\n        [Full nginx server example](https://github.com/operasoftware/dns-ui/wiki/Example-configuration:-nginx)\n\n5.  Set up an authentication module for your virtual host (eg. authnz_ldap for Apache).\n\n6.  Copy the file `config/config-sample.ini` to `config/config.ini` and edit the settings as required.\n\n7.  Set `scripts/ldap_update.php` to run on a regular cron job.\n\nUsage\n-----\n\nAnyone in the LDAP group defined under `admin_group_cn` in `config/config.ini` will be able to add and modify all zones.\nThey will also be able to grant access under \"User access\" for any zone to any number of users.\n\nAPI\n---\n\nBy going to the URL `/api/v2` with your web browser you can see documentation of the rest API, including all of the\navailable API methods. [See this on the demo server](https://dnsui.xiven.com/api/v2).\n\nScreenshots\n-----------\n\n### Editing multiple records in one batch\n![Editing multiple records in one batch](public_html/screenshot-zoneedit.png)\n\n### Comprehensive changelog of all changes\n![Comprehensive changelog of all changes](public_html/screenshot-changelog.png)\n\nLicense\n-------\n\nCopyright 2013-2018 Opera Software\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foperasoftware%2Fdns-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foperasoftware%2Fdns-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foperasoftware%2Fdns-ui/lists"}