Skip to content

Instantly share code, notes, and snippets.

View tristanbes's full-sized avatar

Tristan Bessoussa tristanbes

View GitHub Profile
main:
remember_me:
key: "%secret%"
lifetime: 31536000
path: /
domain: .my-domain.com # Defaults to the current domain from $_SERVER
@tristanbes
tristanbes / config.yml
Created February 22, 2013 12:47
Session cookie name for Symfony2 and subdomains
framework:
esi: { enabled: true }
translator: { fallback: %locale% }
secret: %secret%
router:
resource: "%kernel.root_dir%/config/routing.yml"
strict_requirements: %kernel.debug%
form: ~
csrf_protection: ~
validation: { enable_annotations: true }
@tristanbes
tristanbes / services.xml
Created November 23, 2012 15:39
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<service id="seek_team_premium.contact.listener" class="SeekTeam\PremiumBundle\Event\Listener\StatsListener">
<tag name="kernel.event_subscriber" />
<argument type="service" id="liuggio_stats_d_client.factory" />
<argument type="service" id="liuggio_stats_d_client.service" />
</service>
@tristanbes
tristanbes / StatsListener.php
Created November 23, 2012 15:17
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Event\Listener;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
use SeekTeam\PremiumBundle\Event\Events;
class StatsListener implements EventSubscriberInterface
@tristanbes
tristanbes / Events.php
Created November 23, 2012 15:07
Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Event;
final class Events
{
const PREMIUM_START = 'gamercertified.premium.start';
const PREMIUM_SUCCESS = 'gamercertified.premium.success';
const PREMIUM_CANCEL = 'gamercertified.premium.cancel';
const PREMIUM_ERROR = 'gamercertified.premium.error';
@tristanbes
tristanbes / DefaultController.php
Created November 23, 2012 15:02
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Controller;
use SeekTeam\HomeBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use JMS\SecurityExtraBundle\Annotation\Secure;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\GenericEvent;
@tristanbes
tristanbes / StatsDClientBundle.php
Created November 9, 2012 16:02
StatsDClientBundle installation
// composer.json
"require": {
# ..
"liuggio/statsd-client-bundle": ">=1.2",
# ..
}
// After running php composer.phar update liuggio/statsd-client-bundle
// Enable the Bundle in AppKernel.php
@tristanbes
tristanbes / example.sh
Created November 9, 2012 15:53
Install Graphite on Debian Server
# Installing graphite dependencies
apt-get install -y python2.6 python-pip python-cairo python-django python-django-tagging
apt-get install -y libapache2-mod-wsgi python-twisted python-memcache python-pysqlite2 python-simplejson
pip install whisper
pip install carbon
pip install graphite-web
# Setup a vhost by grabbing the example the graphite team released on their repo.
# In this file, you'll provide the url used to access to your Graphite dashboard
wget https://raw.github.com/tmm1/graphite/master/examples/example-graphite-vhost.conf -O /etc/apache2/sites-available/graphite
@tristanbes
tristanbes / gist:3918310
Created October 19, 2012 13:46
Install Stats.d on a debian server
sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev
# Don't forget to go to the location you want to install node in (like cd /home/) before running these commands
git clone https://github.com/joyent/node.git
cd node
git checkout v0.8.12
./configure --openssl-libpath=/usr/lib/ssl
make
make test
# Add the bundle to your composer
"a2lix/translation-form-bundle" : "dev-master"
# Enable the Bundle in the AppKernel.php
new A2lix\TranslationFormBundle\A2lixTranslationFormBundle(),
# Configure the Bundle in the config.yml