Nothing happens on login
-
Hi!
Installed plugin “Google Apps Login” and one more plugin called “force login” that show up wp-login on access to blog.
When clicking on “Login with Google” i got list of accounts and when i choose the right one it return me to wp-login.
I can see in address bar “https://blog.domain.com/wp-login.php?state=bb6a5b4018%257Chttps%253A%252F%252Fblog.domain.com%252F&code=4/sATVXATh5WIBv5dmx0XIvBWz4b5r1LNk73S1zVL08LY&authuser=1&hd=domain.com&session_state=76d01d32afa410ed3c3d1ae8600dfa8345763ccd..0a83&prompt=none#”.
Charles proxy show:
client address=127.0.0.1
remote address=blog.domain.com/ip.address.of.server
And i didn’t see any errors (may be problem in client and remote address?).
Force ssl is on.
Nginx working as reverse proxy for apache.
Here is location conf:location / {
if (-f /opt/wwwservices/office/www/maintenance.file){
error_page 503 = @maintenance;
return 503;
}
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Scheme $scheme;
proxy_pass https://127.0.0.1:8080;
proxy_redirect off;
client_max_body_size 1024m;
client_body_buffer_size 128k;
proxy_connect_timeout 1800;
proxy_send_timeout 1800;
proxy_read_timeout 1800;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}Tried to disable “force login” but still no luck.
How can i debug plugin or requests from oauth?
- The topic ‘Nothing happens on login’ is closed to new replies.