igorosabel
New Pleskian
- Server operating system version
- Debian 11.11
- Plesk version and microupdate number
- 18.0.66 #2
Hi!
I have an issue with nginx, http3 and Angular apps. I activated http3 support on nginx using the CLI:
After that I checked:
When I check with HTTP/3 Check it says:
I have an Angular app on a domain and since it's all static files (html, css and js) I have only nginx activated for the site:
I also have the Firewall Plesk extension but I have a rule that says "WWW server usign HTTP/3" and "Plesk administrative interface using HTTP/3".
Using Chrome Developer Tools I see that every asset requested from the app (like other js files or images) have this header:
But the main file has the header missing. Why is this? Am I missing something?
Thanks!
I have an issue with nginx, http3 and Angular apps. I activated http3 support on nginx using the CLI:
plesk bin http3_pref --enable
After that I checked:
root@server:/home/user# plesk bin http3_pref --status
HTTP/3 is enabled for nginx
When I check with HTTP/3 Check it says:
Server does not advertise any alternative services.
I have an Angular app on a domain and since it's all static files (html, css and js) I have only nginx activated for the site:
Proxy mode: unchecked
Intelligent processing of static files: unchecked
Serving static files directly using nginx: checked
Additional nginx directives
location ~ ^/ {
try_files $uri $uri/ /index.html;
}
location = /index.html {
internal;
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
I also have the Firewall Plesk extension but I have a rule that says "WWW server usign HTTP/3" and "Plesk administrative interface using HTTP/3".
Using Chrome Developer Tools I see that every asset requested from the app (like other js files or images) have this header:
Alt-Svc: h3=".443"; ma=86400
But the main file has the header missing. Why is this? Am I missing something?
Thanks!