Git Product home page Git Product logo

Comments (1)

TheDagger avatar TheDagger commented on August 24, 2024

After reading some of the other comments I got this to work by setting the errors for this part to ignore notices (error_reporting(E_ERROR | E_WARNING | E_PARSE);) and then I upgraded to curl with http2 support. For others that might need the commands in DOCKER this is what I did.

#Install curl again but with HTTP-2 Protocol Support Now
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y tmux wget htop
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y
g++ make binutils autoconf automake autotools-dev libtool pkg-config
zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev
libjemalloc-dev cython python3-dev python-setuptools

RUN git clone https://github.com/tatsuhiro-t/nghttp2.git
WORKDIR nghttp2
RUN autoreconf -i
RUN automake
RUN autoconf
RUN ./configure
RUN make
RUN make install

#Upgrades to latest curl for http2 support
WORKDIR ~
RUN apt-get update && apt-get build-dep -y curl
RUN wget http://curl.haxx.se/download/curl-7.46.0.tar.bz2
RUN tar -xvjf curl-7.46.0.tar.bz2
WORKDIR curl-7.46.0
RUN ./configure --with-nghttp2=/usr/local --with-ssl
RUN make
RUN make install
RUN ldconfig

This made it work for me :)

from pushok.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.