On 3/25/15, Theodore Wynnychenko <[email protected]> wrote:
>
> Is there anything for me to look at/consider in trying to correct this?
>
> Thanks
> Ted
>
>
Here is a working example from my server. Note that I don't bother
with port 80. You might want to try without the port 80 listen line to
rule out some config parsing issue. Also the tls options are in a {}
block and make sure your cert and key have secure permissions.
server "mydomain.com" {
listen on $ext_addr tls port 443
alias "www.mydomain.com"
tls {
certificate "/etc/ssl/mydomain.com.crt"
key "/etc/ssl/private/mydomain.com.key"
}
# Set max upload size to 513M (in bytes)
connection max request body 537919488
root "/htdocs"
directory index index.html
}