2015-09-07 60 views
1

我將節點應用程序託管到服務器。在我的應用程序中,我使用護照用於facebook google +和twitter登錄,但重定向的url轉到localhost:3000。使用護照時,apache重定向到本地主機

<VirtualHost *:80> 
ServerAdmin [email protected] 
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> 

,當我從本地主機到重定向到IP地址改變的ProxyPass。我給了domine地址,它不工作。

請幫幫我。我只是想重定向到我的domine(example.com)。

我在facebook twitter和google plus中創建了應用程序,並已在我的主域名中註冊。

我的URL

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

你想使一個重定向後,一個成功的權威性使用的護照嗎?然後,您應該在代碼中更改successRedirect,而不是在您的apache配置中。

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

這是我已經做了但不工作 –

+0

我編輯我的職務 –

+0

@HarisAju和裏面是什麼你的「req.session.returnTo」?你確定,它不是「localhost:3000」嗎?你可以登錄到控制檯嗎? –