You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, everyone,
I have a small website for my NWT teaching. It's in the school network:
Port 80 is passed through to port 7775 on the Docker host computer.
If I access the Docker host directly from a computer in the school network with http://dockerhost:7775/typo3/ everything works exactly as it should.
However, when I access https://wwwmc.myschool.de/typo3/ from the school network or the Internet, some images are not displayed in the backend:
If I log in again via http://dockerhost:7775/typo3/ then the image is displayed correctly. If I then go back to the same page via https://wwwmc.meineschule.de/typo3/, is it strangely displayed correctly?!?
Outside of the backend, the pages are displayed correctly.
I assume that I have to make entries for the reverse proxy nginx. Unfortunately, I still haven't figured out what I'm in
[SYS][reverseProxyIP], [SYS][reverseProxyHeaderMultiValue], [SYS][reverseProxyPrefix], [SYS][reverseProxySSL] and [SYS][reverseProxyPrefixSSL]
must enter.
This is the nginx configuration file for the website (just in case):
server {
listen [::]:80;
listen 80;
server_name wwwmc.myschool.de;
location / {
return 301 https://wwwmc.myschool.de$request_uri;
}
# this is for renewal of Let's encrypt certificates
##########################################################
location ^~ /.well-known/acme-challenge {
alias /var/www/dehydrated;
}
##########################################################
}
server {
listen [::]:443 ssl http2;
listen 443 ssl http2;
server_name wwwmc.myschool.de;
ssl_certificate /var/lib/dehydrated/certs/wwwmc.myschool.de/fullchain.pem;
ssl_certificate_key /var/lib/dehydrated/certs/wwwmc.myschool.de/privkey.pem;
ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers on;
root /var/www/html;
index index.php index.html;
location / {
access_log /var/log/nginx/wwwmc.access.log;
error_log /var/log/nginx/wwwmc.error.log;
proxy_pass http://localhost:7775;
}
}
This is of course not an error, but maybe there is a tip that solves this problem.
I would like to thank you in advance for thinking along with me.
The text was updated successfully, but these errors were encountered:
Sorry for the late response. TBH, off the top of my head, I don't have any clue on this one. 🙁
You could try to verify from which host the images are actually requested in your backend (maybe they're not displayed because they're requested via HTTP, whereas your site is served via HTTPS) or (in case the images are requested from the correct host) from which URL exactly (maybe some cache isn't warmed up correctly) and with which status code.
Hello, everyone,
![grafik](https://user-images.githubusercontent.com/3775093/194949878-a7036550-6694-46ee-87ee-c5a6edc0f0da.png)
![grafik](https://user-images.githubusercontent.com/3775093/194950298-242ed7bb-a47a-43e5-b0bc-06d476396f88.png)
![grafik](https://user-images.githubusercontent.com/3775093/194950655-e83321f4-e2bd-4381-b06d-4ae0180169ac.png)
I have a small website for my NWT teaching. It's in the school network:
Port 80 is passed through to port 7775 on the Docker host computer.
If I access the Docker host directly from a computer in the school network with http://dockerhost:7775/typo3/ everything works exactly as it should.
However, when I access https://wwwmc.myschool.de/typo3/ from the school network or the Internet, some images are not displayed in the backend:
If I log in again via http://dockerhost:7775/typo3/ then the image is displayed correctly. If I then go back to the same page via https://wwwmc.meineschule.de/typo3/, is it strangely displayed correctly?!?
Outside of the backend, the pages are displayed correctly.
I assume that I have to make entries for the reverse proxy nginx. Unfortunately, I still haven't figured out what I'm in
[SYS][reverseProxyIP], [SYS][reverseProxyHeaderMultiValue], [SYS][reverseProxyPrefix], [SYS][reverseProxySSL] and [SYS][reverseProxyPrefixSSL]
must enter.
This is the nginx configuration file for the website (just in case):
This is of course not an error, but maybe there is a tip that solves this problem.
I would like to thank you in advance for thinking along with me.
The text was updated successfully, but these errors were encountered: