Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
#!/usr/bin/env python | |
# based on http://stackoverflow.com/questions/7052947/split-95mb-json-array-into-smaller-chunks | |
# usage: python json-split filename.json | |
# produces multiple filename_0.json of 1.49 MB size | |
import json | |
import sys | |
with open(sys.argv[1],'r') as infile: | |
o = json.load(infile) |
#! /bin/bash | |
# HEADS UP! Make sure to use '*' or a valid hostname for the FDQN prompt | |
echo 01 > ca.srl | |
openssl genrsa -des3 -out ca-key.pem | |
openssl req -new -x509 -days 365 -key ca-key.pem -out ca.pem | |
openssl genrsa -des3 -out server-key.pem | |
openssl req -new -key server-key.pem -out server.csr |
# Capistrano-style: if maintenance.html exists, it will be served for any request | |
# other than style and images. Use status code 503 to tell crawlers to come back later. | |
ErrorDocument 503 /system/maintenance.html | |
RewriteEngine On | |
RewriteCond %{REQUEST_URI} !\.(css|gif|jpg|png)$ | |
RewriteCond %{DOCUMENT_ROOT}/system/maintenance.html -f | |
RewriteCond %{SCRIPT_FILENAME} !maintenance.html | |
RewriteRule ^.*$ - [redirect=503,last] |
# Create your superuser | |
$ mongo | |
> use admin | |
> db.createUser({user:"someadmin",pwd:"secret", roles:[{role:"root",db:"admin"}]}) | |
> exit | |
# Alias for convenience (optional and at your own risk) | |
$ echo 'alias mongo="mongo --port 27017 -u someadmin -p secret --authenticationDatabase admin"' >> ~/.bash_profile | |
$ source ~/.bash_profile |
if v:shell_error || ctags_output !~# '\(Exuberant\|Universal\) Ctags' | |
if ctags_output =~ 'Universal Ctags' "fix the bug | |
return 1 | |
endif | |
let errmsg = 'Tagbar: Ctags doesn''t seem to be Exuberant Ctags!' | |
let infomsg = 'BSD ctags will NOT WORK.' . | |
\ ' Please download Exuberant Ctags from ctags.sourceforge.net' . | |
\ ' and install it in a directory in your $PATH' . | |
\ ' or set g:tagbar_ctags_bin.' |
php: | |
image: php:7.1.1-fpm | |
volumes: | |
- ./code:/code | |
links: | |
- mysql | |
composer: | |
image: composer/composer:php7 | |
volumes: | |
- ./code/blog:/app |
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; | |
# | |
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh" | |
# | |
# PLEASE DO NOT EDIT IT DIRECTLY. | |
# | |
FROM debian:jessie | |
## update the source |