Skip to content

Instantly share code, notes, and snippets.

View satishgadhave's full-sized avatar

Satish satishgadhave

  • Pebstone Infotech Pvt Ltd
  • Mumbai, India
View GitHub Profile
@tkhduracell
tkhduracell / README.md
Last active January 2, 2019 05:34
Configure Google Hangout notifications on Jenkins

Install plugins

  • instant-messaging plugin
  • Jabber Plugin plugin

Jenkins > Manage Jenkins > Configure System > Jabber Notification

  • Enable Jabber Notification
  • Jabber ID: <sender@gmail.com>
  • Password: <your password>
  • Advanced
  • Server: talk.google.com
@bcambel
bcambel / nginx.conf
Created August 16, 2013 06:57
Nginx maintenance redirect when a specific file exists
server {
listen 80;
server_name mysite.com;
root /var/www/mysite.com/;
location / {
if (-f $document_root/maintenance.html) {
return 503;
}
... # the rest of your config goes here