Forked from Adrien Jarthon's Pen Pure CSS browser mockups.
A Pen by Giovani Oliveira on CodePen.
Forked from Adrien Jarthon's Pen Pure CSS browser mockups.
A Pen by Giovani Oliveira on CodePen.
Flat iPhone 5S made with pure CSS
Forked from Ali Khalilifar's Pen CSS Pure Flat iPhone 5S.
A Pen by Giovani Oliveira on CodePen.
Minimal yet very detailed.
Forked from Shak Dizzle's Pen Minimal Flat Devices Responsive.
A Pen by Giovani Oliveira on CodePen.
server { | |
listen 80; | |
server_name CHANGEME.app; | |
root /var/www/vhosts/CHANGEME.app/public; | |
index index.html index.htm index.php; | |
charset utf-8; | |
location / { |
sudo chown www-data:www-data -R * # Let apache be owner | |
find . -type d -exec sudo chmod 755 {} \; # Change directory permissions rwxr-xr-x | |
find . -type f -exec sudo chmod 644 {} \; # Change file permissions rw-r--r-- |
# Configuration file | |
########################################################################################################## | |
# autodetect | |
#--------------------------------------------------------------------------------------------------------# | |
# Autodetect items and blocks during game start-up. | |
########################################################################################################## | |
autodetect { | |
# Autodetect blocks with the below prefixes in the ore dictionary, adding the names to the axe list. [default: true] |
version: "2" | |
services: | |
web: | |
image: nginx:latest | |
container_name: Nginx | |
ports: | |
- "80:80" | |
volumes: | |
- ./public:/public |
version: '2' | |
services: | |
webserver: | |
depends_on: | |
- db | |
image: php:7-apache | |
container_name: Apache2-PHP7 | |
restart: always | |
volumes: | |
- ./public_html:/var/www/html/ |
FROM php:7.2-apache | |
RUN apt-get update && apt-get install -y \ | |
libfreetype6-dev \ | |
libjpeg62-turbo-dev \ | |
libpng-dev \ | |
libmcrypt-dev \ | |
&& pecl install mcrypt-1.0.1 \ | |
&& docker-php-ext-enable mcrypt \ | |
&& docker-php-ext-install -j$(nproc) iconv \ | |
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ |