{"commit":"537c939e7211fcc7a5e6f6a16ba82569d26903c6","old_file":"sites-available\/ssl.example.com","new_file":"sites-available\/ssl.example.com","old_contents":"# Choose between www and non-www, listen on the *wrong* one and redirect to\n# the right one -- http:\/\/wiki.nginx.org\/Pitfalls#Server_Name\n#\nserver {\n listen 80;\n\n # listen on both hosts\n server_name example.com www.example.com;\n\n include h5bp\/directive-only\/ssl.conf;\n\n # and redirect to the https host (declared below)\n # avoiding http:\/\/www -> https:\/\/www -> https:\/\/ chain.\n return 301 https:\/\/example.com$request_uri;\n}\n\nserver {\n listen 443 ssl spdy;\n\n # listen on the wrong host\n server_name www.example.com;\n\n include h5bp\/directive-only\/ssl.conf;\n\n # and redirect to the non-www host (declared below)\n return 301 https:\/\/example.com$request_uri;\n}\n\nserver {\n listen 443 ssl spdy;\n\n # The host name to respond to\n server_name example.com;\n\n include h5bp\/directive-only\/ssl.conf;\n\n # Path for static files\n root \/sites\/example.com\/public;\n\n #Specify a charset\n charset utf-8;\n\n # Custom 404 page\n error_page 404 \/404.html;\n\n # Include the basic h5bp config set\n include h5bp\/basic.conf;\n}\n","new_contents":"# Choose between www and non-www, listen on the *wrong* one and redirect to\n# the right one -- http:\/\/wiki.nginx.org\/Pitfalls#Server_Name\n#\nserver {\n listen 80;\n\n # listen on both hosts\n server_name example.com www.example.com;\n\n include h5bp\/directive-only\/ssl.conf;\n\n # and redirect to the https host (declared below)\n # avoiding http:\/\/www -> https:\/\/www -> https:\/\/ chain.\n return 301 https:\/\/example.com$request_uri;\n}\n\nserver {\n listen 443 ssl spdy;\n\n # listen on the wrong host\n server_name www.example.com;\n\n include h5bp\/directive-only\/ssl.conf;\n\n # and redirect to the non-www host (declared below)\n return 301 https:\/\/example.com$request_uri;\n}\n\nserver {\n listen 443 ssl spdy;\n\n # The host name to respond to\n server_name example.com;\n\n include h5bp\/directive-only\/ssl.conf;\n\n # Path for static files\n root \/var\/www\/example.com\/public;\n\n #Specify a charset\n charset utf-8;\n\n # Custom 404 page\n error_page 404 \/404.html;\n\n # Include the basic h5bp config set\n include h5bp\/basic.conf;\n}\n","subject":"Use a more conventional location for sites","message":"Use a more conventional location for sites\n\nit's more common (at meast IME) to use \/var\/www\/example.com rather than\ncreating a new root folder `sites` to put apps in.\n","lang":"DIGITAL Command Language","license":"mit","repos":"yshaojie\/server-configs-nginx,bond-agency\/server-configs-nginx,yggsoft\/server-configs-nginx,tomtarrot\/server-configs-nginx,unixboy\/server-configs-nginx,dolymood\/server-configs-nginx,blmlove409\/server-configs-nginx,Qoto\/server-configs-nginx,heivin\/server-configs-nginx,njmube\/server-configs-nginx,szepeviktor\/server-configs-nginx,damnfine\/server-configs-nginx,kane-c\/server-configs-nginx,k0nsl\/server-configs-nginx,lifecom\/server-configs-nginx,Olvikolvi\/server-configs-nginx,chranderson\/server-configs-nginx,dliggat\/sample-nginx-config,jlien-calwater\/server-configs-nginx,TheBookPeople\/server-configs-nginx,AgtLucas\/server-configs-nginx,georgemarselis\/server-configs-nginx,rafwlaz\/server-configs-nginx,iDTLabssl\/server-configs-nginx,eric-seekas\/server-configs-nginx,cxnam\/server-configs-nginx,diegocastro\/server-configs-nginx,susaing\/server-configs-nginx"} {"commit":"66461582ce4a5816c545d43a9d71b33b3bf5cf7c","old_file":"data\/xyz.domain.com","new_file":"data\/xyz.domain.com","old_contents":"\n ServerName xyz.domain.com\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess mustard user=mustard group=mustard processes=1 threads=5\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n\n \n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/the\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n WSGIProcessGroup mustard\n WSGIApplicationGroup %{GLOBAL}\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n","new_contents":"\n ServerName xyz.domain.com\n {{ALIAS}}\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess xyz.domain.com user=mustard group=mustard processes=1 threads=5\n WSGIProcessGroup xyz.domain.com\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIApplicationGroup %{GLOBAL}\n\n \n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/projec\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","subject":"Modify apache site template to use a unique process user\/group","message":"Modify apache site template to use a unique process user\/group\n\nThis allows multiple instances to be deployed at once and have all\nuse WSGIScriptAlias, which would otherwise not work.\n","lang":"DIGITAL Command Language","license":"agpl-3.0","repos":"CodethinkLabs\/mustard,CodethinkLabs\/mustard"} {"commit":"3dd788d0f77af953915d627817b5331c06193eb0","old_file":"data\/xyz.domain.com","new_file":"data\/xyz.domain.com","old_contents":"\n ServerName xyz.domain.com\n {{ALIAS}}\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess xyz.domain.com user=mustard group=mustard processes=1 threads=5\n WSGIProcessGroup xyz.domain.com\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIApplicationGroup %{GLOBAL}\n\n \n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/projec\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","new_contents":"\n ServerName xyz.domain.com\n {{ALIAS}}\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess xyz.domain.com user=mustard group=mustard processes=1 threads=5\n WSGIProcessGroup xyz.domain.com\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIApplicationGroup %{GLOBAL}\n\n \n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","subject":"Fix a typo in the site template","message":"Fix a typo in the site template\n","lang":"DIGITAL Command Language","license":"agpl-3.0","repos":"CodethinkLabs\/mustard,CodethinkLabs\/mustard"} {"commit":"7122e24d46928a2dad7835aa6ba5524c7e253a61","old_file":"data\/xyz.domain.com","new_file":"data\/xyz.domain.com","old_contents":"\n ServerName xyz.domain.com\n {{ALIAS}}\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess xyz.domain.com user=mustard group=mustard processes=1 threads=5\n WSGIProcessGroup xyz.domain.com\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIApplicationGroup %{GLOBAL}\n\n \n SetEnv MUSTARD_CONFIG_FILE \/home\/mustard\/.mustard.conf\n SetEnv MUSTARD_AUTH codethink\n SetEnv MUSTARD_AUTH_SERVER {{AUTH SERVER}}\n SetEnv MUSTARD_PROJECT_CODE {{PROJECT CODE}}\n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","new_contents":"\n ServerName xyz.domain.com\n {{ALIAS}}\n\n RewriteEngine On\n RewriteCond %{HTTPS} off\n RewriteRule (.*) https:\/\/%{HTTP_HOST}%{REQUEST_URI}\n<\/VirtualHost>\n\n\n ServerName xyz.domain.com\n {{ALIAS}}\n DocumentRoot \/home\/mustard\/mustard\n\n SSLEngine on\n SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP\n\n SSLCertificateFile {{SSL CERT PATH}}\/{{SSL CERT NAME}}.crt\n SSLCertificateKeyFile {{SSL CERT PATH}}\/{{SSL CERT NAME}}.key\n SSLCertificateChainFile {{SSL CERT PATH}}\/{{SSL CERT NAME}}.ca-bundle\n SSLCACertificateFile {{SSL CERT PATH}}\/{{SSL CERT NAME}}.ca-bundle\n\n WSGIPassAuthorization On\n WSGIDaemonProcess xyz.domain.com user=mustard group=mustard processes=1 threads=5\n WSGIProcessGroup xyz.domain.com\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIApplicationGroup %{GLOBAL}\n\n \n SetEnv MUSTARD_CONFIG_FILE \/home\/mustard\/.mustard.conf\n SetEnv MUSTARD_AUTH codethink\n SetEnv MUSTARD_AUTH_SERVER {{AUTH SERVER}}\n SetEnv MUSTARD_PROJECT_CODE {{PROJECT CODE}}\n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","subject":"Update the apache site template for HTTPS\/SSL support","message":"Update the apache site template for HTTPS\/SSL support\n","lang":"DIGITAL Command Language","license":"agpl-3.0","repos":"CodethinkLabs\/mustard,CodethinkLabs\/mustard"} {"commit":"707984868063a8798e5fabec207917ef7c5b368c","old_file":"nginx\/test.justindirose.com","new_file":"nginx\/test.justindirose.com","old_contents":"server {\n listen 80 default_server;\n listen [::]:80 default_server ipv6only=on;\n\n root \/usr\/share\/nginx\/html;\n index index.html index.htm;\n\n # Make site accessible from http:\/\/localhost\/\n server_name localhost,test.justindirose.com;\n\n location \/ {\n # First attempt to serve request as file, then\n # as directory, then fall back to displaying a 404.\n try_files $uri $uri\/ \/index.html;\n # Uncomment to enable naxsi on this location\n # include \/etc\/nginx\/naxsi.rules\n }\n location \/hubhook {\n proxy_pass https:\/\/dockerhost:3000;\n }\n}\n","new_contents":"server {\n listen 80 default_server;\n listen [::]:80 default_server ipv6only=on;\n\n root \/usr\/share\/nginx\/html;\n index index.html index.htm;\n\n # Make site accessible from http:\/\/localhost\/\n server_name localhost,test.justindirose.com;\n\n location \/ {\n # First attempt to serve request as file, then\n # as directory, then fall back to displaying a 404.\n try_files $uri $uri\/ \/index.html;\n # Uncomment to enable naxsi on this location\n # include \/etc\/nginx\/naxsi.rules\n }\n location \/hubhook {\n proxy_pass http:\/\/dockerhost:3000;\n }\n}\n","subject":"Change proxy from https to http","message":"Change proxy from https to http\n","lang":"DIGITAL Command Language","license":"mit","repos":"justindirose\/test.justindirose.com,justindirose\/test.justindirose.com,justindirose\/test.justindirose.com"} {"commit":"3d7c5caf4b8c660da51ff5bf2e765e919c815045","old_file":"bins\/x86_16.dos.com","new_file":"bins\/x86_16.dos.com","old_contents":"\u000e\u001f\u000e\u0001\t!\u0001L!Hello World!\r\r\n$","new_contents":"\u0000]\u0001=!P\u0000e\u0001![>!n\u0001A!\tL!bla.txt\u0000bla2.txt$bla2.txt\u0000You wrote: $","subject":"Replace simple.com with one that uses more syscalls","message":"DOS: Replace simple.com with one that uses more syscalls\n","lang":"DIGITAL Command Language","license":"mit","repos":"Grazfather\/usercorn,lunixbochs\/usercorn"} {"commit":"09120c119984b1c0e0be6c26f3f3fe1313d53d8e","old_file":"data\/xyz.domain.com","new_file":"data\/xyz.domain.com","old_contents":"\n ServerName xyz.domain.com\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess mustard user=mustard group=everyone processes=1 threads=5\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n\n \n AuthType Basic\n AuthName \"XYZ Mustard\"\n AuthBasicProvider wsgi\n Require valid-user\n\n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/the\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n WSGIAuthUserScript \/home\/mustard\/mustard\/adapter.wsgi\n\n WSGIProcessGroup mustard\n WSGIApplicationGroup %{GLOBAL}\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","new_contents":"\n ServerName xyz.domain.com\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess mustard user=mustard group=mustard processes=1 threads=5\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n\n \n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/the\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n WSGIProcessGroup mustard\n WSGIApplicationGroup %{GLOBAL}\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n","subject":"Update apache instance template again","message":"Update apache instance template again\n","lang":"DIGITAL Command Language","license":"agpl-3.0","repos":"CodethinkLabs\/mustard,CodethinkLabs\/mustard"} {"commit":"25411817ae0894a88affb1c0a2e8f36cc82e9e8c","old_file":"zones\/wyvernsquare.com","new_file":"zones\/wyvernsquare.com","old_contents":"$TTL 3600\n@ \t\tIN\tSOA\tdns1.wyvernsquare.com. helpdesk.wyvernsquare.com. (\n\t\t\t2017040402\t; serial\n\t\t\t300\t\t; refresh\n\t\t\t300\t\t; retry\n\t\t\t1209600\t\t; expire\n\t\t\t300 )\t\t; minimum\n\t\tIN\tNS\tdns1.wyvernsquare.com.\n\t\tIN\tNS\tns2.wyvernsquare.com.\n\t\tIN\tA\t133.130.102.210\n IN MX 10 MX.ZOHO.COM.\n IN MX 20 MX2.ZOHO.COM.\n IN TXT \"v=spf1 include:zoho.com ~all\"\n IN TXT \"MS=ms47698118\"\n$ORIGIN wyvernsquare.com.\ndns1 172800 IN A 133.130.102.210\nns2 172800 IN A 133.130.102.210\nwww\tIN\tA 133.130.102.210\ntest\tIN\tA 216.58.197.14\n*\tIN\tCNAME wyvernsquare.com.\n","new_contents":"$TTL 3600\n@ \t\tIN\tSOA\tdns1.wyvernsquare.com. helpdesk.wyvernsquare.com. (\n\t\t\t2017040402\t; serial\n\t\t\t300\t\t; refresh\n\t\t\t300\t\t; retry\n\t\t\t1209600\t\t; expire\n\t\t\t300 )\t\t; minimum\n\t\tIN\tNS\tdns1.wyvernsquare.com.\n\t\tIN\tNS\tns2.wyvernsquare.com.\n\t\tIN\tA\t133.130.102.210\n IN MX 10 MX.ZOHO.COM.\n IN MX 20 MX2.ZOHO.COM.\n IN TXT \"v=spf1 include:zoho.com ~all\"\n IN TXT \"MS=ms47698118\"\n$ORIGIN wyvernsquare.com.\ndns1 172800 IN A 133.130.102.210\nns2 172800 IN A 133.130.102.210\nwww\tIN\tA 133.130.102.210\ntest\tIN\tA 216.58.197.14\ntest IN CNAME google.com.\nsalesforce IN CNAME wyvernsquare-dev-ed.my.salesforce.com.\n","subject":"Add a few more test entries","message":"Add a few more test entries\n","lang":"DIGITAL Command Language","license":"apache-2.0","repos":"Wyvernsquare\/dns,Wyvernsquare\/dns"} {"commit":"d5b5bf9e18717f487a8e48b5edf1f6a94251bf1a","old_file":"sites-available\/example.com","new_file":"sites-available\/example.com","old_contents":"# www to non-www redirect -- duplicate content is BAD:\n# https:\/\/github.com\/h5bp\/html5-boilerplate\/blob\/5370479476dceae7cc3ea105946536d6bc0ee468\/.htaccess#L362\n# Choose between www and non-www, listen on the *wrong* one and redirect to\n# the right one -- http:\/\/wiki.nginx.org\/Pitfalls#Server_Name\nserver {\n # don't forget to tell on which port this server listens\n listen [::]:80;\n listen 80;\n\n # listen on the www host\n server_name www.example.com;\n\n # and redirect to the non-www host (declared below)\n return 301 $scheme:\/\/example.com$request_uri;\n}\n\nserver {\n # listen [::]:80 accept_filter=httpready; # for FreeBSD\n # listen 80 accept_filter=httpready; # for FreeBSD\n # listen [::]:80 deferred; # for Linux\n # listen 80 deferred; # for Linux\n listen [::]:80;\n listen 80;\n\n # The host name to respond to\n server_name example.com;\n\n # Path for static files\n root \/sites\/example.com\/public;\n\n #Specify a charset\n charset utf-8;\n\n # Custom 404 page\n error_page 404 \/404.html;\n\n # Include the basic h5bp config set\n include h5bp\/basic.conf;\n}\n","new_contents":"# www to non-www redirect -- duplicate content is BAD:\n# https:\/\/github.com\/h5bp\/html5-boilerplate\/blob\/5370479476dceae7cc3ea105946536d6bc0ee468\/.htaccess#L362\n# Choose between www and non-www, listen on the *wrong* one and redirect to\n# the right one -- http:\/\/wiki.nginx.org\/Pitfalls#Server_Name\nserver {\n # don't forget to tell on which port this server listens\n listen [::]:80;\n listen 80;\n\n # listen on the www host\n server_name www.example.com;\n\n # and redirect to the non-www host (declared below)\n return 301 $scheme:\/\/example.com$request_uri;\n}\n\nserver {\n # listen [::]:80 accept_filter=httpready; # for FreeBSD\n # listen 80 accept_filter=httpready; # for FreeBSD\n # listen [::]:80 deferred; # for Linux\n # listen 80 deferred; # for Linux\n listen [::]:80;\n listen 80;\n\n # The host name to respond to\n server_name example.com;\n\n # Path for static files\n root \/sites\/example.com\/public;\n\n # Specify a charset\n charset utf-8;\n\n # Custom 404 page\n error_page 404 \/404.html;\n\n # Include the basic h5bp config set\n include h5bp\/basic.conf;\n}\n","subject":"Add white space for comment.","message":"Add white space for comment.","lang":"DIGITAL Command Language","license":"mit","repos":"TheBookPeople\/server-configs-nginx,kane-c\/server-configs-nginx,cxnam\/server-configs-nginx,bond-agency\/server-configs-nginx"} {"commit":"140d77bf55fecb6a1d429f73f0be243a87712d2f","old_file":"keys\/backup@example.com","new_file":"keys\/backup@example.com","old_contents":"-----BEGIN RSA PRIVATE KEY-----\nMIICXAIBAAKBgQCqGKukO1De7zhZj6+H0qtjTkVxwTCpvKe4eCZ0FPqri0cb2JZfXJ\/DgYSF6vUp\nwmJG8wVQZKjeGcjDOL5UlsuusFncCzWBQ7RKNUSesmQRMSGkVb1\/3j+skZ6UtW+5u09lHNsj6tQ5\n1s1SPrCBkedbNf0Tp0GbMJDyR4e9T04ZZwIDAQABAoGAFijko56+qGyN8M0RVyaRAXz++xTqHBLh\n3tx4VgMtrQ+WEgCjhoTwo23KMBAuJGSYnRmoBZM3lMfTKevIkAidPExvYCdm5dYq3XToLkkLv5L2\npIIVOFMDG+KESnAFV7l2c+cnzRMW0+b6f8mR1CJzZuxVLL6Q02fvLi55\/mbSYxECQQDeAw6fiIQX\nGukBI4eMZZt4nscy2o12KyYner3VpoeE+Np2q+Z3pvAMd\/aNzQ\/W9WaI+NRfcxUJrmfPwIGm63il\nAkEAxCL5HQb2bQr4ByorcMWm\/hEP2MZzROV73yF41hPsRC9m66KrheO9HPTJuo3\/9s5p+sqGxOlF\nL0NDt4SkosjgGwJAFklyR1uZ\/wPJjj611cdBcztlPdqoxssQGnh85BzCj\/u3WqBpE2vjvyyvyI5k\nX6zk7S0ljKtt2jny2+00VsBerQJBAJGC1Mg5Oydo5NwD6BiROrPxGo2bpTbu\/fhrT8ebHkTz2epl\nU9VQQSQzY1oZMVX8i1m5WUTLPz2yLJIBQVdXqhMCQBGoiuSoSjafUhV7i1cEGpb88h5NBYZzWXGZ\n37sJ5QsW+sJyoNde3xH8vdXhzU7eT82D6X\/scw9RZz+\/6rCJ4p0=\n-----END RSA PRIVATE KEY-----\n","new_contents":"-----BEGIN RSA PRIVATE KEY-----\nTHIS+IS+A+FAKE+KEY\n-----END RSA PRIVATE KEY-----\n","subject":"Replace example key with some nonsense text","message":"Replace example key with some nonsense text\n","lang":"DIGITAL Command Language","license":"mit","repos":"ustclug\/rb-backup"} {"commit":"2f8f473703b943662a184a67a2aa3339ebc0157a","old_file":"docker\/backend.quran.com","new_file":"docker\/backend.quran.com","old_contents":"server {\n listen 3000;\n server_name api.quran.com;\n\n access_log \/var\/log\/nginx\/api.quran.com\/access.log;\n\n location \/ {\n passenger_enabled on;\n passenger_user app;\n passenger_ruby \/usr\/bin\/ruby2.2;\n passenger_app_env production;\n root \/home\/app\/quran\/public;\n index index.html index.htm;\n }\n}\n","new_contents":"server {\n listen 3000;\n server_name api.quran.com;\n\n access_log \/var\/log\/nginx\/api.quran.com\/access.log;\n error_log \/var\/log\/nginx\/api.quran.com\/error.log;\n\n location \/ {\n passenger_enabled on;\n passenger_user app;\n passenger_ruby \/usr\/bin\/ruby2.2;\n passenger_app_env production;\n root \/home\/app\/quran\/public;\n index index.html index.htm;\n }\n}\n","subject":"Add error log to nginx config.","message":"Add error log to nginx config.\n","lang":"DIGITAL Command Language","license":"mit","repos":"quran\/quran.com-api,quran\/quran.com-api,quran\/quran.com-api"} {"commit":"3598bf31946a1a5840da22804798fc370ec57baf","old_file":"docker\/backend.quran.com","new_file":"docker\/backend.quran.com","old_contents":"server {\n listen 3000;\n server_name api.quran.com;\n\n access_log \/var\/log\/nginx\/api.quran.com\/access.log;\n error_log \/var\/log\/nginx\/api.quran.com\/error.log;\n\n location \/ {\n passenger_enabled on;\n passenger_user app;\n passenger_ruby \/usr\/bin\/ruby2.3;\n passenger_app_env production;\n passenger_max_request_queue_size 200;\n passenger_ruby \/usr\/local\/rvm\/rubies\/ruby-2.3.1\/bin\/ruby;\n root \/home\/app\/quran\/public;\n index index.html index.htm;\n }\n}\n","new_contents":"server {\n listen 3000;\n server_name api.quran.com;\n\n access_log \/var\/log\/nginx\/api.quran.com\/access.log;\n error_log \/var\/log\/nginx\/api.quran.com\/error.log;\n\n location \/ {\n passenger_enabled on;\n passenger_user app;\n passenger_app_env production;\n passenger_max_request_queue_size 200;\n passenger_ruby \/usr\/local\/rvm\/rubies\/ruby-2.3.1\/bin\/ruby;\n root \/home\/app\/quran\/public;\n index index.html index.htm;\n }\n}\n","subject":"Remove extra passenger_ruby from nginx config","message":"Remove extra passenger_ruby from nginx config\n\nThis causes nginx to fail to start the backend server.","lang":"DIGITAL Command Language","license":"mit","repos":"quran\/quran.com-api,quran\/quran.com-api,quran\/quran.com-api"} {"commit":"75c9ffb57cb8863f982abb38f152058e5984bd56","old_file":"services\/coinbase.com","new_file":"services\/coinbase.com","old_contents":"{\n \"1\": {\n \"id\": \"coinbase.com\",\n \"base\": \"https:\/\/coinbase.com\/api\/v1\/\",\n \"docs\": \"https:\/\/coinbase.com\/api\/doc\",\n \"control\": \"https:\/\/coinbase.com\/transactions\",\n \"uploadFormat\": \"json\",\n \"params\": {\n \"format\": \"json\"\n },\n \"configParams\": {\n \"api_key\": \"key\"\n }\n }\n}","new_contents":"{\n \"1\": {\n \"id\": \"coinbase.com\",\n \"base\": \"https:\/\/coinbase.com\/api\/v1\/\",\n \"docs\": \"https:\/\/coinbase.com\/api\/doc\",\n \"control\": \"https:\/\/coinbase.com\/transactions\",\n \"configParams\": {\n \"api_key\": \"key\"\n }\n }\n}","subject":"Throw out hash elements we don't need","message":"Throw out hash elements we don't need\n","lang":"DIGITAL Command Language","license":"mit","repos":"tcr\/rem,tcr\/rem"} {"commit":"869f91b553697151e8db93c460029dc45ee76e27","old_file":"data\/xyz.domain.com","new_file":"data\/xyz.domain.com","old_contents":"\n ServerName xyz.domain.com\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess mustard user=mustard group=everyone processes=1 threads=5\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIAuthUserScript \/home\/mustard\/mustard\/auth.wsgi\n\n \n AuthType Basic\n AuthName \"XYZ Mustard\"\n AuthBasicProvider wsgi\n Require valid-user\n\n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/the\/project\/mustard\/repo\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n WSGIProcessGroup mustard\n WSGIApplicationGroup %{GLOBAL}\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","new_contents":"\n ServerName xyz.domain.com\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess mustard user=mustard group=everyone processes=1 threads=5\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n\n \n AuthType Basic\n AuthName \"XYZ Mustard\"\n AuthBasicProvider wsgi\n Require valid-user\n\n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/the\/project\/mustard\/repo.git\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n WSGIAuthUserScript \/home\/mustard\/mustard\/adapter.wsgi\n\n WSGIProcessGroup mustard\n WSGIApplicationGroup %{GLOBAL}\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","subject":"Improve the apache service instance template","message":"Improve the apache service instance template\n","lang":"DIGITAL Command Language","license":"agpl-3.0","repos":"CodethinkLabs\/mustard,CodethinkLabs\/mustard"} {"commit":"72e119c34ab0a8289fc2aa11a598aa33c6f878e6","old_file":"inventory\/host_vars\/nodepool.bonnyci.portbleu.com","new_file":"inventory\/host_vars\/nodepool.bonnyci.portbleu.com","old_contents":"gearman_bind_address: 0.0.0.0\n\nnodepool_mysql_host: zuul.bonncyi.portbleu.com\nnodepool_gearman_servers:\n - host: zuul.bonnyci.portbleu.com\n port: 4730\n","new_contents":"gearman_bind_address: 0.0.0.0\n\nnodepool_mysql_host: zuul.bonnyci.portbleu.com\nnodepool_gearman_servers:\n - host: zuul.bonnyci.portbleu.com\n port: 4730\n","subject":"Fix typo in db addr","message":"Fix typo in db addr\n","lang":"DIGITAL Command Language","license":"apache-2.0","repos":"jamielennox\/hoist,BonnyCI\/hoist,BonnyCI\/hoist,jamielennox\/hoist,SpamapS\/hoist,SpamapS\/hoist"} {"commit":"76f12f20784ed0b6dce11fb1ea46b4df8544ee53","old_file":"inventory\/host_vars\/nodepool.bonncyi.portbleu.com","new_file":"inventory\/host_vars\/nodepool.bonncyi.portbleu.com","old_contents":"","new_contents":"nodepool_mysql_host: zuul.bonncyi.portbleu.com\nnodepool_gearman_servers:\n - host: zuul.bonnyci.portbleu.com\n port: 4730\n","subject":"Use well known names for gearman and mysql","message":"Use well known names for gearman and mysql\n\nRather than use ansible to determine the IP for gearman and mysql lets\nmanage it manually for specific hosts. This will simplify things whilst\nwe have a small number of servers.\n","lang":"DIGITAL Command Language","license":"apache-2.0","repos":"BonnyCI\/hoist,SpamapS\/hoist,SpamapS\/hoist,BonnyCI\/hoist,jamielennox\/hoist,jamielennox\/hoist"} {"commit":"3676b7de7dafba3aa757837d27d24ed6ed4c3367","old_file":"data\/xyz.domain.com","new_file":"data\/xyz.domain.com","old_contents":"","new_contents":"\n ServerName xyz.domain.com\n DocumentRoot \/home\/mustard\/mustard\n\n WSGIPassAuthorization On\n WSGIDaemonProcess mustard user=mustard group=everyone processes=1 threads=5\n WSGIScriptAlias \/ \/home\/mustard\/mustard\/adapter.wsgi\n WSGIAuthUserScript \/home\/mustard\/mustard\/auth.wsgi\n\n \n AuthType Basic\n AuthName \"XYZ Mustard\"\n AuthBasicProvider wsgi\n Require valid-user\n\n SetEnv MUSTARD_SERVER_PATH \/home\/mustard\/mustard\/\n SetEnv MUSTARD_PROJECT_PATH \/path\/to\/the\/project\/mustard\/repo\n SetEnv MUSTARD_PLANTUML_JAR \/home\/mustard\/plantuml.jar\n\n WSGIProcessGroup mustard\n WSGIApplicationGroup %{GLOBAL}\n Order deny,allow\n Allow from all\n <\/Directory>\n<\/VirtualHost>\n\n","subject":"Add an unfinished apache mustard instance template","message":"Add an unfinished apache mustard instance template\n","lang":"DIGITAL Command Language","license":"agpl-3.0","repos":"CodethinkLabs\/mustard,CodethinkLabs\/mustard"} {"commit":"3d83c62ca46da1fac9557af672782b438668f80b","old_file":"build\/openvms\/deltree.com","new_file":"build\/openvms\/deltree.com","old_contents":"","new_contents":"$ ivfy = f$verify(0)\n$ on control_y then goto out\n$!\n$! DELTREE.COM - AUTHORS: Joseph G. Slater\n$! Alexander Saprykin\n$!\n$! DELTREE deletes a subdirectory tree. You must set your default to \n$! the parent directory of the subdirectory tree you wish to delete. \n$! For instance, if you have a tree [SLATER.MAIN] and you want to \n$! delete the [.MAIN] subtree, you must set your default to [SLATER]\n$! Assuming you have the symbol DELTREE set up, you would type:\n$!\n$! deltree main\n$! \n$ orig_dir = f$enviroment(\"DEFAULT\")\n$ error_free = 1\n$\n$ CONTEXT0 = 0\n$ CONTEXT1 = 1\n$ CONTEXT2 = 2\n$ CONTEXT3 = 3\n$ CONTEXT4 = 4\n$ CONTEXT5 = 5\n$ CONTEXT6 = 6\n$ CONTEXT7 = 7\n$ CONTEXT8 = 8\n$ CONTEXT9 = 9\n$! \n$ if \"''p1'\" .eqs. \"\" then goto out\n$!\n$ level = 1\n$ md = p1 + \".dir\"\n$ md = f$search(md) ! Look for First level directory\n$!\n$ if md .eqs. \"\" then goto out\n$!\n$ set prot=w:d 'p1'.dir\n$ set default [.'p1'] ! Set to first level directory\n$!\n$ srch:\n$ df = f$search(\"*.dir\", CONTEXT'level') ! Any directories?\n$ if \"''df'\" .eqs. \"\" then goto delthem\n$ df = \"''f$parse(df,,,\"NAME\")'\" ! Get the directory name\n$ set prot=w:d 'df'.dir ! Let it be deleted\n$ set default [.'df'] ! Go down a level\n$ level = level + 1\n$ if level .gt. 8 then goto out\n$ goto srch\n$!\n$ delthem:\n$ del *.*;* ! Delete all files\n$! if .not. $STATUS then error_free = 0\n$ set default [-]\n$ level = level - 1 ! Go Back up a level\n$ if level .eq. 0 then goto finish\n$ goto srch\n$!\n$ finish:\n$ if .not. error_free then goto out\n$ del 'p1'.dir;*\n$ goto out\n$!\n$ out:\n$ set default 'orig_dir'\n$ if .not. ivfy then set noverify\n","subject":"Add DELTREE.COM script to delete a directory tree on OpenVMS","message":"Add DELTREE.COM script to delete a directory tree on OpenVMS\n","lang":"DIGITAL Command Language","license":"unknown","repos":"saprykin\/plibsys,saprykin\/plibsys,saprykin\/plib,saprykin\/plib,saprykin\/plibsys"} {"commit":"12ab99fa3fee4bf05a601f2ffdfb9bfe664836bc","old_file":"INPUTS\/G09\/orbitals.com","new_file":"INPUTS\/G09\/orbitals.com","old_contents":"","new_contents":"!this Gaussian input will print out orbital info for Molden to read.\n%mem=300Mb\n%nproc=1\n#HF\/6-31g** sp GFINPUT IOP(6\/7=3)\n\nkoment\n\n0 2\nH\n","subject":"Create Gaussian input file for orbital analysis.","message":"Create Gaussian input file for orbital analysis.\n\nThis makes Gaussian to print orbital info for Molden.","lang":"DIGITAL Command Language","license":"mit","repos":"PHOTOX\/photoxrepo,PHOTOX\/photoxrepo,PHOTOX\/photoxrepo"}