mirror of
https://github.com/danog/php.git
synced 2024-11-30 04:29:16 +01:00
35 lines
1.5 KiB
Plaintext
35 lines
1.5 KiB
Plaintext
&& make install \
|
|
\
|
|
&& cd / \
|
|
&& gpg --keyserver pgp.mit.edu --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8 \
|
|
&& apt-get update && apt-get install -y libapr1-dev libaprutil1-dev && rm -r /var/lib/apt/lists/* \
|
|
&& curl -SL "http://apache.osuosl.org/httpd/httpd-2.4.10.tar.bz2" -o httpd.tar.bz2 \
|
|
&& curl -SL "https://www.apache.org/dist/httpd/httpd-2.4.10.tar.bz2.asc" -o httpd.tar.bz2.asc \
|
|
&& gpg --verify httpd.tar.bz2.asc \
|
|
&& mkdir -p /usr/src/httpd \
|
|
&& tar -xvf httpd.tar.bz2 -C /usr/src/httpd --strip-components=1 \
|
|
&& rm httpd.tar.bz2.* \
|
|
&& cd /usr/src/httpd \
|
|
&& ./configure --enable-so \
|
|
&& make -j"$(nproc)" \
|
|
&& make install \
|
|
&& cd / \
|
|
&& rm -r /usr/src/httpd \
|
|
&& mkdir -p /var/www/html \
|
|
&& sed -r ' \
|
|
s/(DirectoryIndex index[.])html/\1php/; \
|
|
s!/usr/local/apache2/htdocs!/var/www/html!g; \
|
|
s!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g; \
|
|
s!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g; \
|
|
$ a<FilesMatch \\.php$>\n\tSetHandler application/x-httpd-php\n</FilesMatch> \
|
|
' /usr/local/apache2/conf/httpd.conf > /etc/apache2/httpd.conf \
|
|
&& rm /usr/local/apache2/conf/httpd.conf \
|
|
&& ln -s /etc/apache2/httpd.conf /usr/local/apache2/conf/httpd.conf \
|
|
&& echo "<html><head></head><body><?php echo '<h1>Hello, World!</h1>'; ?></body></html>" >> /var/www/html/index.php \
|
|
&& cd /usr/src/php \
|
|
&& make clean \
|
|
&& ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql \
|
|
&& make -j"$(nproc)" \
|
|
&& make install \
|
|
&& cp php.ini-development /usr/local/lib/php.ini \
|