This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Bind DNS on all available interfaces on port 53 | |
| setLocal('0.0.0.0:53', {}) | |
| -- Set Access Control List to allow all IPv4 and IPv6 addresses | |
| setACL({'0.0.0.0/0', '::/0'}) | |
| -- Bind the web server on port 8083 on all available interfaces | |
| webserver("0.0.0.0:8083") | |
| -- Set the web server configuration | |
| setWebserverConfig({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| labels: | |
| - name: "type: bug" | |
| color: d73a4a | |
| description: Logic errors in scripts, runtime crashes, or service connectivity failures. | |
| - name: "type: feature" | |
| color: 0075ca | |
| description: New code functionality or an entirely new service deployment. | |
| - name: "type: enhancement" | |
| color: 2cbe4e | |
| description: Refactoring existing code for performance, improving UI/UX, or hardening security configs. |
OlderNewer