Skip to content

Instantly share code, notes, and snippets.

View nurullahisik's full-sized avatar
😎
funny

NURULLAH IŞIK nurullahisik

😎
funny
View GitHub Profile
@plentz
plentz / nginx.conf
Last active January 1, 2026 20:09
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@helieting
helieting / client.php
Created June 6, 2012 08:08
nusoap example2
<?php
// Pull in the NuSOAP code
require_once('nusoap.php');
// Create the client instance
$client = new soapclient('http://localhost/phphack/hellowsdl2.php?wsdl', true);
// Check for an error
$err = $client->getError();
if ($err) {
// Display the error
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';