http to https redirection not working properly #421
Closed
Comments
Welcome, @jdepotter! Our community of users and team should be able to help with these configuration issues over on the forum -- the GitHub issue tracker is only meant for reporting bugs. Do you mind creating a topic for this over there, instead? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Clicking on the title of an article tries to open http://mysite.fr/article-name. The current setup will redirect me to https://mysite.fr instead of https://mysite.fr/page.
I have another site, developed by myself, running on the same server, and http to https works well on this one.
I am using nginx with the following configuration:
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
server_name mysite.fr;
}
The text was updated successfully, but these errors were encountered: