Is there a way to add a stock “authentication required” popup to a dev server in a way that once they’ve logged in once, they can view the whole dev server?
Our application is built in CodeIgniter.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you’re looking for is Apache Basic Authentication:
http://httpd.apache.org/docs/2.0/howto/auth.html
(If you’re using Apache, but most other servers offer similar support).
It can be a pain to set up and manage, but it’s cheap and fast security.
Scroll down to the “Getting it working” bit to get started.