Explorar o código

Fix missing gitkeep and folders

iProspective hai 1 ano
pai
achega
bb93c160b7

+ 1 - 0
conf/.gitignore

@@ -0,0 +1 @@
+*

+ 0 - 0
conf/.gitkeep


+ 0 - 0
conf/apache/.gitkeep


+ 0 - 0
conf/awstats/.gitkeep


+ 0 - 0
conf/php/.gitkeep


+ 1 - 0
cookies/.gitignore

@@ -0,0 +1 @@
+*

+ 0 - 0
cookies/.gitkeep


+ 2 - 0
log/.gitignore

@@ -0,0 +1,2 @@
+*
+*/*

+ 0 - 0
log/.gitkeep


+ 0 - 0
log/apache/.gitkeep


+ 0 - 0
log/php-fpm/.gitkeep


+ 0 - 0
log/php/.gitkeep


+ 1 - 0
socket/.gitignore

@@ -0,0 +1 @@
+*

+ 0 - 0
socket/.gitkeep


+ 2 - 0
sources/.gitignore

@@ -0,0 +1,2 @@
+*
+*/*

+ 58 - 0
sources/compile.sh

@@ -0,0 +1,58 @@
+#!/bin/bash
+
+folder_source="$1-$2"
+php="$1-$2-$3"
+echo $folder_source;
+cd "/home/workspace/SiteAdm/sources/$folder_source"
+prefix="/opt/$php"
+
+make clean > ../compile-$php.log
+
+./configure \
+  --prefix=$prefix \
+  --with-config-file-path=$prefix/etc \
+  --with-config-file-scan-dir=$prefix/etc/conf.d \
+  --enable-cli \
+  --enable-fpm \
+  --disable-debug \
+  --enable-sockets \
+  --with-curl \
+  --with-pear \
+  --with-gd \
+  --with-jpeg-dir \
+  --with-png-dir \
+  --with-zlib \
+  --with-xpm-dir \
+  --with-freetype-dir \
+  --with-t1lib \
+  --enable-exif \
+  --with-mcrypt \
+  --with-mhash \
+  --with-mysql=mysqlnd \
+  --with-mysqli=mysqlnd \
+  --with-pdo-mysql=mysqlnd \
+  --enable-sqlite-utf8 \
+  --enable-dba \
+  --with-openssl \
+  --with-xmlrpc \
+  --with-xsl \
+  --with-bz2 \
+  --with-gettext \
+  --enable-wddx \
+  --enable-zip \
+  --enable-bcmath \
+  --enable-calendar \
+  --enable-ftp \
+  --enable-mbstring \
+  --enable-soap \
+  --enable-shmop \
+  --enable-sysvsem \
+  --enable-sysvshm \
+  --enable-sysvmsg \
+  --enable-apc \
+>> ../compile-$php.log
+
+make >> ../compile-$php.log
+make install >> ../compile-$php.log
+
+

+ 1 - 0
ssl_cert/.gitignore

@@ -0,0 +1 @@
+*

+ 0 - 0
ssl_cert/.gitkeep


+ 2 - 0
webapp/.gitignore

@@ -0,0 +1,2 @@
+*
+*/*

+ 0 - 0
webapp/.gitkeep