<div dir="ltr">Hi<div>This is my nginx configuration file. <div>/etc/nginx/conf.d$ sudo nano default.conf <br></div><div>server {<br>    listen       443 ssl;<br>    listen       443 http/3 reuseport;<br>    server_name  localhost;<br><br>    ssl_certificate cert.crt;<br>    ssl_certificate_key cert.key;<br>    # Enable all TLS versions (TLSv1.3 is required for QUIC).<br>    ssl_protocols TLSv1.3;<br><br>    # Add Alt-Svc header to negotiate HTTP/3.<br>    add_header Alt-Svc 'quic=":443"';<br>    add_header QUIC-Status $quic;<br><br><br>    #charset koi8-r;<br>    #access_log  /var/log/nginx/host.access.log  main;<br><br>    location / {<br>        root   /usr/share/nginx/html;<br>        index  index.html index.htm;<br>    }<br><br>    #error_page  404              /404.html;<br><br>    # redirect server error pages to the static page /50x.html<br>    #<br>    error_page   500 502 503 504  /50x.html;<br>    location = /50x.html {<br>        root   /usr/share/nginx/html;<br>    }<br></div></div><div><br></div><div><br></div><div>After this i run </div><div>sudo service nginx restart<br></div><div>and it says Job for nginx.service failed because the control process exited with error code.</div>See "systemctl status nginx.service" and "journalctl -xe" for details.<br><div>Okk then i check in systemctl status nginx.service and the error displayed is </div><div><br></div><div>2020/10/10 11:18:01 [emerg] 17014#17014: invalid parameter "http3" in /etc/nginx/conf.d/default.conf:3<br></div><div><br></div><div>Later i have replaced with quic in default.conf and again the same error </div><div>2020/10/10 11:15:47 [emerg] 16898#16898: invalid parameter "quic" in /etc/nginx/conf.d/default.conf:3<br></div><div><br></div><div>I request you to help me with the configuration file i.e. default.conf .</div><div>I need web response of http/3 request by running curl commands </div><div>curl -k --http3 -v "<a href="https://127.0.0.1:443">https://127.0.0.1:443</a>"<br></div><div><br></div><div>BR</div><div>Harish Kumar</div></div>