Forum Discussion
mat_d
Nimbostratus
Dec 02, 2021Serving Moodle App - problem when using https
Hello, I have a problem with serving to moodle app using f5. When I have prepared VS for HTTP traffic everything works fine, but when I overfloating SLL external content like stylesheet is blo...
- Dec 02, 2021
Hi Mateusz,
If the page contains http and https content, web browser will block the http content.
https://support.f5.com/csp/article/K31100432
can you try this?
[root@ve1023:Active] config b virtual bar list
virtual bar {
destination 172.28.19.79:80
ip protocol 6
rules myrule
profiles {
http {}
tcp {}
}
}
[root@ve1023:Active] config b rule myrule list
rule myrule {
when HTTP_REQUEST {
HTTP::respond 302 noserver Location "https://[HTTP::host][HTTP::uri]"
}
}
[root@ve1023:Active] config curl -I http://172.28.19.79/test
HTTP/1.0 302 Found
Location: https://172.28.19.79/test
Connection: Keep-Alive
Content-Length: 0