<div dir="ltr">Hi All, <div><br><div>I would like to know where I went wrong on writing the nginx.conf file for downloading addDevice.txt file which is located at /var/www/files/addDevice.txt. </div></div><div><br></div><div>I used curl command as follows:</div><div><br></div><div>curl -k -v --http3 "<a href="https://localhost:8443/files/addDevice.txt">https://localhost:8443/files/addDevice.txt</a>"<br></div><div>curl -k -v --http3 "<a href="https://localhost:8443/static/addDevice.txt">https://localhost:8443/static/addDevice.txt</a>"<br></div><div><br></div><div>But did not get any response.</div><div><br></div><div>the nginx.conf file is as follows : </div><div><br></div><div>worker_processes auto;<br>events {<br>worker_connections 1024;<br>}<br><br>http {<br>include /etc/nginx/sites-available/*;<br>log_format quic '$remote_addr - $remote_user [$time_local] '<br>'"$request" $status $body_bytes_sent '<br>'"$http_referer" "$http_user_agent" "$quic" "$http3"';<br><br>access_log logs/access.log quic;<br></div><div><br></div><div>server {<br>listen 8443 ssl;<br>listen 8443 http3;<br>ssl_protocols TLSv1.3 TLSv1.2;<br></div><div>client_max_body_size 10M;<br><br>ssl_certificate /home/ubuntu/nginxcertsimp/cert.crt;<br>ssl_certificate_key /home/ubuntu/nginxcertsimp/cert.key;<br><br>location / {<br>            proxy_set_header Host $http_host;<br>            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>            proxy_redirect off;<br>            proxy_buffering off;<br>            proxy_pass <a href="https://localhost">https://localhost</a>;<br></div><div>         }</div>location /static {<br>            root /var/www/files/addDevice.txt;<br><br>add_header Alt-Svc '$http3=":8443"; ma=86400';<br>}<br><br>}<br>}<br><div><br></div><div>Please help me with this so that i can get total time of downloading a file using curl --write-out command.</div><div><br></div><div>Best Regards</div><div>Harish Kumar</div></div>