Extra Features - Lunar-Proxy/Lunar GitHub Wiki
Adult Content Blocking
To block adult content, navigate to the index.ts file in your fork of Lunar and add the following lines of code below the imports
wisp.options.dns_method = "resolve";
wisp.options.dns_servers = ["1.1.1.3", "1.0.0.3"];
wisp.options.dns_result_order = "ipv4first";
Explanation: This will set your DNS to Cloudflare's servers (1.1.1.3 and 1.0.0.3), which are configured to block adult content.
Password Protection
Coming soon!