Skip to content

Instantly share code, notes, and snippets.

View Tyranwyn's full-sized avatar

Sammi Fux Tyranwyn

View GitHub Profile
@Tyranwyn
Tyranwyn / Dockerfile
Last active November 8, 2018 13:09
Elgg.org Docker and docker compose
FROM php:7.2-apache
RUN apt-get update && apt-get install -y \
git \
libpng-dev \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/* \
&& a2enmod rewrite \
&& docker-php-source extract \
&& docker-php-ext-install -j$(nproc) mysqli gd zip exif pdo_mysql \
@Tyranwyn
Tyranwyn / 001-default.conf
Last active November 30, 2023 07:22
Opensource Social Network Docker
<VirtualHost *:8443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>