⚲
Project
General
Profile
Sign in
Register
Home
Projects
Donate
Help
Search
:
Lighttpd
All Projects
Lighttpd
Overview
Activity
Roadmap
Issues
News
Wiki
Forums
Repository
Blog
Developer Blog
Download (966 Bytes)
[Solved] Single process (pblighttpd -1) and SSL
» lighttpd.conf
lighttpd.conf -
citaylor
, 2017-07-28 16:20
var
.
server_root
=
"/var/www/rest"
server
.
username
=
"light"
server
.
document
-
root
=
server_root
+
"/www/docs"
server
.
max
-
fds
=
256
server
.
modules
+= (
"mod_access"
,
"mod_fastcgi"
)
server
.
port
=
8080
ssl
.
engine
=
"enable"
ssl
.
pemfile
=
server_root
+
"/ssl/rest.pem"
ssl
.
cipher
-
list
=
"HIGH:!SSLv2:!MD5:@STRENGTH"
server
.
errorlog
=
"/var/log/lighttpd.log"
debug
.
log
-
request
-
handling
=
"enable"
fastcgi
.
debug
=
1
debug
.
log
-
request
-
header
=
"enable"
debug
.
log
-
request
-
header
-
on
-
error
=
"enable"
debug
.
log
-
state
-
handling
=
"enable"
fastcgi
.
server
= (
"/REST"
=>
(
"localhost"
=>
(
"bin-path"
=>
server_root
+
"/sbin/fcgid"
,
"socket"
=>
server_root
+
"/www/sockets/fcgid.socket"
,
"check-local"
=>
"disable"
,
"max-procs"
=>
1
)
)
)
« Previous
1
2
Next »
(1-1/2)
Loading...