Hi all,
I have few problems to run quic_server with a static web page and a http server :
1- I create a directory "/home/quic/quic-data" for the quic_in_memory_cache_dir of the quic_server
2- In this directory, I create a directory named "Site2" : In this, I create a static web page ( one file "index.html" + one image stored in directory "img" and one video stored in directory "video" )
3- I run http server : python -m SimpleHTTPServer 80
4- I run command "cd /home/quic/quic-data && wget -p --save-headers
http://192.168.1.1/Site2"
5- I edit index.html and add 2 lines :
X-Original-Url:
http://192.168.1.1/Site2/index.html Alternate-Protocol: 80:quic
6- I run quic_server : ./out/Debug/quic_server --port=80 --v=1 --quic_in_memory_cache_dir=/home/quic/quic_data
When I run quic_server, I have this error :[0121/105044:VERBOSE1:quic_in_memory_cache.cc(105)] Attempting to initialize QuicInMemoryCache from directory: /home/quic/quic-data
[0121/105044:VERBOSE1:http_response_headers.cc(635)] missing status line
[0121/105044:VERBOSE1:http_response_headers.cc(688)] assuming HTTP/1.0
[0121/105044:VERBOSE1:http_response_headers.cc(711)] missing response status number; assuming 200
[0121/105044:FATAL:quic_in_memory_cache.cc(156)] Invalid path, ignoring: /home/quic/quic-data/Site2/index.html
My configuration is it good ?
Can you tell me how to resolve this problem ?
Cheers
Xavier Calvez