12 Dec 2018 |
| etue joined the room. | 23:12:19 |
Mathijs | In reply to @eighthave:matrix.org my guess is that those Headers are not required The header Content-Type "application/json" is indeed not required (but it makes firefox show the json all pretty) | 23:15:06 |
Mathijs | but the Header set Access-Control-Allow-Origin "*" is actually required for the .well-known file | 23:15:25 |
Mathijs | that's required because you can use riot-web in the browser, and that will then try to access the .well-known file cross-origin | 23:17:06 |
Mathijs | so I would guess this would be enough:
<Location /.well-known/matrix/client>
Header set Access-Control-Allow-Origin "*"
</Location>
| 23:18:05 |
13 Dec 2018 |
| jomo_41 joined the room. | 00:34:37 |
| apol left the room. | 04:31:36 |
| etue left the room. | 06:32:55 |
| etue joined the room. | 06:33:42 |
| etue left the room. | 08:58:55 |
| etue joined the room. | 08:59:10 |
| etue left the room. | 09:20:39 |
| etue joined the room. | 09:20:56 |
| etue left the room. | 10:52:19 |
| etue joined the room. | 10:52:39 |
_hc | Mathijs: that kind of thing is done via the .htaccess file, so if its required, file a merge request in fdroid-website | 11:10:21 |
Mathijs | ah, right I forgot that .htaccess could do that on apache, thanks! | 11:10:53 |
Mathijs | thanks for the help | 11:25:16 |
Mathijs | MR is sent | 11:25:20 |
Nico Alt | _hc: Did you see Persival's comment on the flatpak issue? https://gitlab.com/fdroid/fdroid-repomaker-flatpak/issues/13#note_124541308
Apparently, flatpak's java defaults to PKCS12 KeyStores which do not support different passwords for store and key. As you're deeply into fdroidserver and maintaining keytool on Debian: do you know what're the defaults on Debian/other systems? Do we need different passwords for store and key? | 11:39:18 |
_hc | Nico Alt: fdroidserver only supports using the same password for store and key | 11:40:19 |
_hc | or at least I've only ever used fdroidserver with store and key passwords being the same | 11:40:50 |
Nico Alt | _hc: Oh. From my debugging inside flatpak, repomaker creates different passwords for those. | 11:41:43 |
Nico Alt | Ping Tovok7. | 11:41:47 |
_hc | try this: | 11:43:35 |
_hc | $ mkdir /tmp/fdroid
$ cd /tmp/fdroid
$ fdroid init
$ grep pass config.py
| 11:44:08 |
_hc | for me, that gens the same for both | 11:44:20 |
_hc | sounds like repomaker is doing this itself | 11:44:43 |
_hc | rather than using fdroid init | 11:44:47 |
Nico Alt | Here it is: repomaker generates different passwords: https://gitlab.com/fdroid/repomaker/blob/44372f48afdef9d25d16fccd9b82272fbcee9621/repomaker/models/repository.py#L142 | 11:45:35 |