Changeset 1815
- Timestamp:
- 08/14/08 14:26:44 (3 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/qa/conf.py (modified) (2 diffs)
- cherokee/trunk/qa/run-tests.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1814 r1815 1 1 2008-08-14 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * qa/conf.py, qa/run-tests.py: Fixes the TLS/SSL execution. 2 4 3 5 * cherokee/connection-protected.h, cherokee/thread.c, cherokee/trunk/qa/conf.py
r1741 r1815 1 PORT = 1978 2 HOST = "localhost" 1 PORT = 1978 2 PORT_TLS = 1979 3 HOST = "localhost" 3 4 4 5 CHEROKEE_PATH = "../cherokee/cherokee" … … 16 17 PYTHON_PATH = "auto" 17 18 PHPCGI_PATH = "auto" 18 PHP_FCGI_PORT = 19 7919 PHP_FCGI_PORT = 1980 19 20 20 21 SSL_CERT_FILE = "/etc/cherokee/ssl/cherokee.pem" cherokee/trunk/qa/run-tests.py
r1764 r1815 134 134 # 135 135 server!port = %d 136 server!port_tls = %s 136 137 server!keepalive = 1 137 138 server!listen = 127.0.0.1 … … 149 150 vserver!1!rule!1!match = default 150 151 vserver!1!rule!1!handler = common 151 """ % (PORT, panic, pid, CHEROKEE_MODS, CHEROKEE_DEPS, www)152 """ % (PORT, PORT_TLS, panic, pid, CHEROKEE_MODS, CHEROKEE_DEPS, www) 152 153 153 154 PHP_FCGI = """\ … … 184 185 vserver!1!ssl_certificate_file = %s 185 186 vserver!1!ssl_certificate_key_file = %s 186 vserver!1!ssl_ca l_list_file = %s187 vserver!1!ssl_ca_list_file = %s 187 188 """ % (SSL_CERT_FILE, SSL_CERT_KEY_FILE, SSL_CA_FILE) 188 189 … … 395 396 396 397 if ssl: 397 port = 443398 port = PORT_TLS 398 399 399 400 # If we want to pause once do it before launching the threads