Skip to content

Commit

Permalink
added certs directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 15, 2014
1 parent bf763eb commit e644799
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Mojo/IOLoop/Server.pm
Expand Up @@ -18,8 +18,8 @@ use constant TLS_WRITE => TLS ? IO::Socket::SSL::SSL_WANT_WRITE() : 0;

# To regenerate the certificate run this command (18.04.2012)
# openssl req -new -x509 -keyout server.key -out server.crt -nodes -days 7300
my $CERT = catfile dirname(__FILE__), 'server.crt';
my $KEY = catfile dirname(__FILE__), 'server.key';
my $CERT = catfile dirname(__FILE__), 'certs', 'server.crt';
my $KEY = catfile dirname(__FILE__), 'certs', 'server.key';

has multi_accept => 50;
has reactor => sub { Mojo::IOLoop->singleton->reactor };
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit e644799

Please sign in to comment.