Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Nodejitsu の使用: アプリをパスワードで保護する方法はありますか? .htaccess などを展開できるかどうかわかりません...偶発的な訪問者からサイトを保護する必要があるだけです
ありがとう
//Load express var express = require('express'); //User validation var auth = express.basicAuth(function(user, pass) { return (user == "super" && pass == "secret"); },'Super duper secret area'); //Password protected area app.get('/admin', auth, routes.admin);