Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

last time, I could be use mod_auth which user authentication module. But it is very simple that login check layout is just web broswer dialog... It is called http-basic-authentication. It is show web-browser's basic dialog. I want to insert my login page instead web broswer dialog Or custom dialog instead patterned dialog.

http://redmine.lighttpd.net/wiki/lighttpd/Docs:ConfigurationOptions

searched custom dialog or page, but I could not find that... Can I modify authentication form? I don't want to use mysql or other DB program.

For reference, lighttpd version is 1.4.28.

Please help me... Thank you :)

share|improve this question

closed as not a real question by WesleyDavid, Ward, Zoredache, MDMarra, voretaq7 Dec 7 '11 at 21:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If you are using HTTP authentication then the authentication dialog is completely controlled by the web browser. There is absolutely no way to change it on the server side.

If you want a fancy login screen you will need to build or run some webapp/cgi software that does forms-based authentication.

The only thing you can do is setup realm.

share|improve this answer
Although I can't change dialog box, thank you for your kindness. The next best thing is make page(cgi/c) that is work with lighttpd authentication module. This way seems to need not MySQL. But I don't know this method possible... – HanGyu Kim Sep 15 '11 at 5:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.