These packages are obsolete! Please use the official packages from http://www.Graylog2.org
=================================================
| <ul id="pages-block"> | |
| <li v-for="page in pages"> | |
| <a v-bind:href="page.url">{{page.name}}</a> | |
| <debug :item="page"/> | |
| </li> | |
| </ul> | |
| ... | |
| Vue.component('debug', { |
| <?php | |
| namespace Payum\SiteBundle\Command; | |
| use Payum\SiteBundle\Model\Library; | |
| use Payum\SiteBundle\Service\LibraryRegistry; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Input\InputOption; | |
| use Symfony\Component\Console\Output\OutputInterface; | |
| use Symfony\Component\Filesystem\Filesystem; |
| build: | |
| - apt-get update -y | |
| - apt-get install -y software-properties-common python-software-properties python g++ make | |
| - apt-add-repository ppa:chris-lea/node.js | |
| - apt-get update -y | |
| - apt-get install -y nodejs | |
| - npm install -g bower | |
| - bower install --allow-root | |
| - composer install --ansi --no-progress --dev --prefer-dist --no-interaction | |
| - app/console doctrine:schema:update --force |
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use Carp; | |
| use WWW::Mechanize; | |
| use Mojo::DOM; | |
| use String::ShellQuote; |
| docker run -rm -t -i -v $(dirname $SSH_AUTH_SOCK) -e SSH_AUTH_SOCK=$SSH_AUTH_SOCK ubuntu /bin/bash |
These packages are obsolete! Please use the official packages from http://www.Graylog2.org
=================================================
I have managed to install this… and make it work. I implemented it for Facebook and Google, but you can extend it. My solution it is mostly as described in #116, with a bit of more code presented. The key aspects that lack in the #116 presentation (IMO) are:
oauth_user_provider in the security.yml with your custom created serviceHere are the steps:
routing.yml I have added all the routes for both bundles.config.yml mostly as it is presented in the HWIOAuthBundle.security.yml mostly as it is presented in the HWIOAuthBundle (though my routes are using /login pattern, not /connect). Also, the oauth_user_provider is set for my custom service.| ############################################################################### | |
| # The MIT License | |
| # | |
| # Copyright 2012-2014 Jakub Jirutka <jakub@jirutka.cz>. | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |
| input { | |
| redis { | |
| host => "127.0.0.1" | |
| type => "redis-input" | |
| # these settings should match the output of the agent | |
| data_type => "list" | |
| key => "logstash" | |
| # We use json_event here since the sender is a logstash agent | |
| message_format => "json_event" | |
| } |
| ## | |
| # APC recipe | |
| # => convenience rules for dealing with APC in applications | |
| ## | |
| _cset(:apc_webroot) { "" } | |
| namespace :apc do | |
| desc <<-DESC | |
| Create a temporary PHP file to clear APC cache, call it (using curl) and removes it |