Project

General

Profile

Actions

Frequently Asked Questions » History » Revision 1

Revision 1/42 | Next »
Pieter Libin, 10/29/2009 02:32 PM


h1. Frequently Asked Questions

{{toc}}

$ openssl dhparam -check -text -5 512 -out dh512.pem

Then start Wt using:

$ ./app.wt --https-address=0.0.0.0 --ssl-certificate=server.pem --ssl-private-key=server.pem --ssl-tmp-dh=dh512.pem

Provide the password at the prompt.

h3. Trouble shooting

h4. Q: My application crashes, and my apache error log shows no information.

There is a known problem with mod_fcgid: STDERR (including everything printed to std::cerr) is not
saved to the apache error log.

Wt uses STDERR by default for all error reporting. You can use a different log file in your wt_config.xml file ().

You may also consider using mod_fastcgi or the built-in web server (wthttpd) during development. The latter is especially convenient for development as it allows you to start from within a debugger, or diagnose memory-related problems with valgrind.

Updated by Pieter Libin over 14 years ago · 1 revisions