Dňa 30. apríla 2023 12:54:12 UTC používateľ Moritz Orbach via Exim-users <exim-users@lists.exim.org> napísal:
>Still open: >- There was protest about the new domain >- ARC signing >- Lurker non-HTTPS post I can only guess, but what i can see after quick look into wget downloaded page, it seems that your backend hardcodes URLs in HTML content. Nginx proxy doesn't manipulate content returned from backed by any way (except redirects), but you have some options: a) fix URLs generation in backend (preffered, if possible) b) connect to backend via HTTPS (resource wasting) c) replace content in frontend To replace content, you can use something as: sub_filter 'action="http://lists.exim.org/' 'action="https://lists.exim.org/' ; # by default does anly first replace sub_filter_once off; Or even to remove schema & host part at all (switch to relative): sub_filter 'action="http://lists.exim.org/' 'action="/' ; regards -- Slavko https://www.slavino.sk/ -- ## subscription configuration (needs account): ## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/ ## unsubscribe (doesn't need account): ## exim-users-unsubscr...@lists.exim.org ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/