tickets #21788
closedShut down i18n.opensuse.org
0%
Description
Hello,
please shut down old translation web in favor of weblate on
l10n.opensuse.org.
Redirect might be good idea to be put in place.
Cheers
Tom
Files
Updated by tampakrap almost 7 years ago
- Category set to Weblate
- Assignee set to tampakrap
Updated by tampakrap almost 7 years ago
- Assignee changed from tampakrap to sbrabec
I did the change on the haproxy config and on the nginx.conf on the weblate host, but it shows 400 on https://i18n.opensuse.org, while it works for https://i18n.opensuse.org/static/weblate-128.png. Stanislav, I'm giving the ticket to you, please investigate further
Updated by sbrabec almost 7 years ago
tampakrap wrote:
I did the change on the haproxy config and on the nginx.conf on the weblate host, but it shows 400 on https://i18n.opensuse.org, while it works for https://i18n.opensuse.org/static/weblate-128.png. Stanislav, I'm giving the ticket to you, please investigate further
Weblate can handle multiple domains that host different projects. Currently, there is only l10n.opensuse.org defined. Wouldn't it be better to create redirect i18n.opensuse.org -> l10n.opensuse.org instead of handling the same contents on two domains?
Updated by tampakrap almost 7 years ago
sure it would, feel free to adjust your nginx.conf. I will remove the entry from the proxy, and will change the cname to be directly to l10n then
Updated by sbrabec almost 7 years ago
I created /etc/nginx/vhosts.d/i18n.conf:
server {
listen 80;
listen 443;
server_name i18n.opensuse.org;
return 301 $scheme://l10n.opensuse.org$request_uri;
}
It works as expected.