使用护照时apache重定向到localhost

时间:2015-09-07 15:00:35

标签: node.js apache virtualhost

我将节点应用程序托管到服务器。在我的应用程序中,我使用了facebook google +和twitter登录的护照。但重定向的URL转到localhost:3000。

<VirtualHost *:80>
ServerAdmin exaple@gmail.com
ServerName example.com
ServerAlias www.example.com
ProxyRequests off
<Proxy *>
    Order deny,allow
    Allow from all
</Proxy>
<Location />
    ProxyPass http://localhost:3000/
    ProxyPassReverse http://localhost:3000/
</Location>

当我将ProxyPass从localhost更改为重定向到该IP的IP地址时。我给了domine地址,它没有用。

请帮帮我。我只想重定向到我的domine(example.com)。

我在facebook twitter和google plus中创建了应用程序,已经注册了我的domine。

我的网址

 app.get('/:cc/userSignInGoogle', passport.authenticate('google', { scope: 'https://www.googleapis.com/auth/plus.me https://www.google.com/m8/feeds https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile' }));
app.get('/userSignInGoogle/callback', passport.authenticate('google', { failureRedirect: '/' }), function(req, res) {
res.redirect(req.session.returnTo || '/');
});

1 个答案:

答案 0 :(得分:1)

您是否想在使用护照成功验证后进行重定向?然后你应该在代码中更改successRedirect,而不是在你的apache配置中。

app.post('/login', passport.authenticate('local',
 { successRedirect: '/',
   failureRedirect: '/login' 
 }));