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
| 1. Make a shell script in the same path as compose with the following: | |
| #!/bin/sh | |
| iptables -A FORWARD -i wg0 -s CLIENTIPHERE -p tcp -d SERVICEIPHERE --dport SERVICEPORTHERE -j ACCEPT | |
| iptables -A FORWARD -i wg0 -s CLIENTIPHERE -j DROP | |
| exec /usr/bin/dumb-init node server/index.mjs | |
| 2. Change CLIENTIPHERE, SERVICEIPHERE and SERVICEPORTHERE to match your setup | |
| 3. chmod +x the shell script |
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
| 0.0.0.0 api.hpsmart.com | |
| 0.0.0.0 cec.hpsmart.com | |
| 0.0.0.0 cec.hpsmart.com.cdn.cloudflare.net | |
| 0.0.0.0 d2mh2hpmbwgn3r.cloudfront.net | |
| 0.0.0.0 hpcorp-prod-volga.apigee.net | |
| 0.0.0.0 hpcorp-prod-volga.dn.apigee.net | |
| 0.0.0.0 hpsmart.com.cdn.cloudflare.net | |
| 0.0.0.0 mq.dataservices.hp.com | |
| 0.0.0.0 mq.hp-dataservices.com | |
| 0.0.0.0 oss.hpconnected.com |
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
| /* ----------------------------- */ | |
| /* Hides super reaction elements */ | |
| /* ----------------------------- */ | |
| [class*=reaction_]:has([aria-label*="super reaction"]), | |
| [class*=burstToggle_] { | |
| display: none; | |
| } | |
| /* ------------------------- */ |