(网络开发新手)
我在nginx
个实例的nodejs
网站上使用Digital Ocean
。
我在http://www.example.org/login上使用passport.js
登录facebook。我的回调网址为http://www.example.org/auth/facebook/callback。
如果我使用http://www....
访问网站,会话就有效但如果我从http://www切换到http://
我已尝试使用以下内容在/etc/nginx/sites-available/default
中创建重定向:
server_name example.org
rewrite ^/(.*)$ http://www.example.org/$1 permanent;
但这不起作用。我做错了什么?
有人可以帮助我在www
中为我的域non-www
和nodejs
版本设置会话,还是正确编写重定向?