This file contains hidden or 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
user www-data www-data; | |
error_log /var/log/nginx/error.log; | |
pid /run/nginx.pid; | |
worker_processes auto; | |
worker_rlimit_nofile 100000; | |
pcre_jit on; | |
events { | |
use epoll; |
This file contains hidden or 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
<?php | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
chdir(__DIR__); | |
if (!file_exists('vendor/autoload.php')) { | |
echo 'Please run:' . PHP_EOL; | |
echo 'composer require facebook/webdriver' . PHP_EOL; |
This file contains hidden or 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
<?php | |
// debug | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
ini_set('html_errors', false); | |
function clrf($num = 1) | |
{ | |
return str_repeat("\r\n", $num); |
This file contains hidden or 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/bash | |
############################################################################## | |
# $Id: checkinstall,v 1.6.3.1 2010/02/10 14:42:32 izto Exp $ | |
# ######################## | |
# | |
# | |
# CheckInstall v1.6.3 | |
# | |
# Installs a compiled program from the program's source directory using | |
# "make install" or any other command supplied on checkinstall's command |
This file contains hidden or 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
--- a/src/mod_ssi.c 2015-05-14 11:34:41.000000000 +0200 | |
+++ b/src/mod_ssi.c 2015-09-20 14:15:16.927322005 +0200 | |
@@ -36,7 +36,6 @@ | |
# include <sys/filio.h> | |
#endif | |
-#include "etag.h" | |
#include "version.h" | |
/* The newest modified time of included files for include statement */ |
This file contains hidden or 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
# supervisor | |
# | |
# Author: Günter Grodotzki <[email protected]> | |
# Version: 2015-04-25 | |
# | |
# - set param "SUPERVISE=enable" to activate | |
# - chmod +x supervise.sh | |
# | |
packages: | |
yum: |
This file contains hidden or 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
<?php | |
namespace Weheartwebsites\Spelling; | |
use Exception; | |
class Bee | |
{ | |
protected $broker; |
This file contains hidden or 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
<?php | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
define('SSH_HOST', ''); | |
define('SSH_PORT', 666); | |
define('SSH_USER', ''); | |
define('SSH_PASS', ''); | |
define('REMOTE_PATH', '/var/www/'); |
This file contains hidden or 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
--- a/src/mod_dirlisting.c 2014-08-19 10:13:09.000000000 +0200 | |
+++ b/src/mod_dirlisting.c 2014-08-19 10:13:50.000000000 +0200 | |
@@ -534,14 +534,14 @@ | |
buffer_append_string_len(out, CONST_STR_LEN("</head>\n<body>\n")); | |
} | |
- /* HEADER.txt */ | |
+ /* HEADER.html */ | |
if (p->conf.show_header) { | |
stream s; |
This file contains hidden or 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
--- a/configure 2014-08-11 12:45:44.000000000 +0200 | |
+++ b/configure 2014-08-11 12:52:00.000000000 +0200 | |
@@ -14330,9 +14330,9 @@ | |
if test "x$use_openssl" = "xyes"; then | |
- if test "x$use_kerberos" != "xyes"; then | |
- CPPFLAGS="$CPPFLAGS -DOPENSSL_NO_KRB5" | |
- fi | |
+# if test "x$use_kerberos" != "xyes"; then |