Skip to content
Snippets Groups Projects
Commit 9f9efbcc authored by bdr7fv's avatar bdr7fv
Browse files

Set up files for lighttpd authentication.


Former-commit-id: 18a429ceb449bab8d7aa4643971a5a6a0b1967b2
parent cc061354
No related branches found
No related tags found
No related merge requests found
......@@ -6292,11 +6292,13 @@ tools/signatures/sqlite.sigs -text
tools/test_controller.sh -text
tools/update_env_var.sh -text
tools/validate.sh -text
web_server/.lighttpdpassword -text
web_server/lighttpd_conf_template -text
web_server/www/hello_world.txt -text
web_server/www/index.html -text
web_server/www/index.lighttpd.html -text
web_server/www/no_extension -text
web_server/www/peasoup.auth/hello_world.txt -text
web_server/www/peasoup.auth/index.html -text
web_server/www/peasoup/index.html -text
web_server/www/peasoup/peasoup.jpg -text
......
guest:password
......@@ -31,3 +31,20 @@ compress.filetype = ( "application/x-javascript", "text/css", "text/ht
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
#configurations for peasoup
server.port=1235
#authentication setup
auth.require = ( "/peasoup.auth/" =>
(
"method" => "basic",
"realm" => "Password protected area",
"require" => "user=guest"
)
)
server.modules += ( "mod_auth" )
auth.debug = 0
auth.backend = "plain"
hello world.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment