I want to set up very simple http server whith replaces few keywords in single html file and send it in repspond to request to clients. Python's http.server looks good for me but in documentation I found:
Warning http.server is not recommended for production. It only implements basic security checks.
and in source code:
SECURITY WARNING: DON'T USE THIS CODE UNLESS YOU ARE INSIDE A FIREWALL -- it may execute arbitrary Python code or external programs.
Do you know any way to create safty http server which ports could be foreword via firewall to internet?