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 || '/');
});
這是我已經做了但不工作 –
我編輯我的職務 –
@HarisAju和裏面是什麼你的「req.session.returnTo」?你確定,它不是「localhost:3000」嗎?你可以登錄到控制檯嗎? –