==IPSec configuration files== /etc/ipsec.conf /etc/ipsec.secrets ==IPSec CA file== /etc/ipsec.d/cacerts/strongswanCert.pem ==IPSec client certificates== You do not need to keep both certs, only one cert is needed by each side. /etc/ipsec.d/certs/client1Cert.pem /etc/ipsec.d/certs/client2Cert.pem ==IPSec private keys== You do not need to keep both keys, only one key is needed by each side. /etc/ipsec.d/private/client1Key.pem /etc/ipsec.d/private/client2Key.pem ==Normal NAT== iptables-normal-nat-enable.sh ==Data recording and filtrating== Keywords are encoded with BASE64. iptables-rproxy-enable.sh rproxy keyword-drop.txt keyword-warn.txt ==Flaskcode Fix== Open /usr/local/lib/python3.8/dist-packages/flaskcode/static/js/flaskcode.js and edit:
flaskcode.getLanguageByExtension = function (extension) {
extension = 'txt';
return flaskcode.languages.find(function (lang) {
return lang.extensions.indexOf('.'+extension) > -1;
});
};