I'm searching for the server which allows to launch php files with ssl. I've tried for example python simple server:
import BaseHTTPServer, SimpleHTTPServer
import ssl
httpd = BaseHTTPServer.HTTPServer(('127.0.0.1', 4443), SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket (httpd.socket, keyfile='privkeyA.pem', certfile='certA.crt', server_side=True)
print("Server is working!")
httpd.serve_forever()
Certificate and key works well, but I can only launch html files, because this server doesn't support php ones.
localhost. That is what I am using and it works.WAMPServerorXAMPPor there are a few other