Skip to content

Instantly share code, notes, and snippets.

@aminin
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aminin/f3938a0647c687330f70 to your computer and use it in GitHub Desktop.
Save aminin/f3938a0647c687330f70 to your computer and use it in GitHub Desktop.
satis repo
satis/
web/
composer.phar
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName satis.dev
ServerName satis.example.com
DocumentRoot /home/satis/satis/web
<Directory />
DirectoryIndex index.html
Options FollowSymLinks
#AllowOverride None
</Directory>
<Directory /home/satis/satis/web>
DirectoryIndex index.html
Options Indexes FollowSymLinks MultiViews
#AllowOverride None
Require all granted
#Order allow,deny
#allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/satis/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/satis/access.log combined
</VirtualHost>
{
"name": "Omlook private repo",
"homepage": "http://satis.dev/",
"repositories": [
{ "type": "vcs", "url": "https://github.com/aminin/php-airbrake.git" },
{ "type": "vcs", "url": "https://github.com/aminin/EoAirbrakeBundle.git" }
],
"require-all": true
}
server {
#listen 80;
server_name satis.dev;
access_log /var/log/nginx/satis/access.log combined;
error_log /var/log/nginx/satis/error.log notice;
root /home/satis/satis/web;
}
test -d web || mkdir web
test -e composer.phar || curl -sS https://getcomposer.org/installer | php
test -d satis || php composer.phar create-project composer/satis --stability=dev --keep-vcs
php satis/bin/satis build satis.json web/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment