This file contains 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 | |
use yii\helpers\Html; | |
use yii\widgets\ActiveForm; | |
/** | |
* @var yii\web\View $this | |
* @var common\modules\yii2press\models\BlogCategory $model | |
* @var yii\widgets\ActiveForm $form | |
*/ |
This file contains 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 | |
class Sanitizer | |
{ | |
/** | |
* Returns a url-sanitized string | |
* @static | |
* @param string $string | |
* @return string | |
*/ |
This file contains 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 drmabuse\bootstrapglue\helpers; | |
/** | |
* Date: 20.11.13 | |
* Time: 23:00 | |
* Class Glyph | |
* Create a Glyphicon | |
* |
This file contains 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
server { | |
listen 80 | |
set $host_path "/var/www/netapp.dev"; | |
access_log /var/www/netapp.dev/log/access.log main; | |
error_log /var/www/netapp.dev/log/error.log; | |
server_name netapp.dev; | |
root $host_path/www; | |
set $yii_bootstrap "index.php"; | |
charset utf-8; |
This file contains 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
server { | |
listen 80 | |
set $host_path "/var/www/netapp.dev"; | |
access_log /var/www/netapp.dev/log/access.log main; | |
error_log /var/www/netapp.dev/log/error.log; | |
server_name netapp.dev; | |
root $host_path/www; | |
set $yii_bootstrap "index.php"; | |
charset utf-8; |
This file contains 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 | |
/** | |
* | |
* main.php configuration file | |
* | |
* @author Pascal Brewing <[email protected]> | |
* @link http://www.pascal-brewing.de | |
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License |
This file contains 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
server { | |
listen 80 | |
set $host_path "/var/www/netapp.dev"; | |
access_log /var/www/netapp.dev/log/access.log main; | |
error_log /var/www/netapp.dev/log/error.log; | |
server_name netapp.dev; | |
root $host_path/www; | |
set $yii_bootstrap "index.php"; | |
listen 443 default_server ssl; | |
server_tokens off; |
This file contains 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
worker_processes 1; | |
error_log /usr/local/etc/nginx/logs/error.log debug; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
client_max_body_size 722m; |
This file contains 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
server { | |
listen 80; | |
server_name localhost; | |
root /Users/pascalbrewing/www/; | |
access_log /usr/local/etc/nginx/logs/default.access.log main; | |
location / { | |
include /usr/local/etc/nginx/conf.d/php-fpm; | |
} |