-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xmpp.com search results and redirections #651
Comments
Ah, thanks for bringing that up. Am I right to conclude that a redirect on our website would fix this sufficiently? |
The same permanent redirect that is applied to xmpp.com/* should work fine. |
Hmmm actually that redirect won't work out of the box with the current certificate on https://xmpp.com The certificate should be fixed first |
That doesn't seem to be something we handle in this repo (the Dockerfile is pretty simple), it's probably handled in the reverse proxy directly on the server. I guess something like the following would do, but @mwild1 would know better. server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name xmpp.com;
include /path/to/ssl.conf;
return 301 https://xmpp.org$request_uri;
} And yes the cert should be fixed in any case, thanks @sonnyp. |
It is possible to solve the problem of the newsletter too? |
@guusdk can you explain or suggest what a possible action here would be? |
/duplicate xsf/infrastructure#9 |
xmpp.com/ redirects to xmpp.org/
However it's not the case for https://xmpp.com/extensions/ (as well as
/extensions/*
) and maybe others.As such
xmpp.com
URLs are showing up in search engine results.Example: https://www.google.com/search?q=conversation+xep+0385&oq=conversation+xep+0385
yields https://xmpp.com/extensions/xep-0423.html
It presents several inconvenients:
The text was updated successfully, but these errors were encountered: