This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[program:myDjangoApp] | |
directory=/path/to/django/project | |
command=/usr/bin/gunicorn --workers=4 project.wsgi:application | |
user=john | |
umask=022 | |
autostart=True | |
autorestart=True | |
redirect_stderr=True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# <daemonname> <summary> | |
# | |
# chkconfig: 2345 20 80 | |
# description: Manage Nuxeo Platform service | |
### BEGIN INIT INFO | |
# Provides: nuxeo | |
# Required-Start: $local_fs $network $syslog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@cubie:/tmp# apt-get build-dep php5 php5-fpm php5-pgsql php5-cli php5-gd php5-imagick php5-mcrypt php5-mhash | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
Note, selecting 'libc-client2007e-dev' instead of 'libc-client-dev' | |
Note, selecting 'libjpeg8-dev' instead of 'libjpeg-dev' | |
Note, selecting 'libpng12-dev' instead of 'libpng-dev' | |
The following packages have unmet dependencies: | |
libcurl4-openssl-dev : Depends: librtmp-dev but it is not going to be installed | |
Depends: libssh2-1-dev but it is not going to be installed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[nsteinmetz@centos6 ezpublish]$ php55 composer.phar update --no-dev --prefer-dist | |
Loading composer repositories with package information | |
Updating dependencies | |
Your requirements could not be resolved to an installable set of packages. | |
Problem 1 | |
- zetacomponents/mvc-authentication-tiein dev-master requires zetacomponents/mvc-tools ~1.1 -> no matching package found. | |
- zetacomponents/mvc-authentication-tiein dev-master requires zetacomponents/mvc-tools ~1.1 -> no matching package found. | |
- Installation request for zetacomponents/mvc-authentication-tiein dev-master#9bae3a7 -> satisfiable by zetacomponents/mvc-authentication-tiein[dev-master]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
write_files: | |
- content: | | |
allow-hotplug eth0 | |
iface eth0 inet static | |
address 10.252.0.101 | |
netmask 255.255.255.0 | |
gateway 10.252.0.1 | |
dns-nameservers 80.67.169.12 80.67.169.40 | |
path: /etc/network/interfaces.d/eth0 |