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
var gulp = require('gulp'); | |
//Js Hint | |
var jshint = require('gulp-jshint'); | |
//Kompiluje sassa | |
var sass = require('gulp-sass'); | |
//Autoodświeżanie | |
var browserSync = require('browser-sync'); | |
//Autoprefixy | |
var autoprefixer = require('gulp-autoprefixer'); | |
//Mapa |
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
var gulp = require("gulp"); | |
var sass = require("gulp-sass"); | |
// Podlgląd w czasie rzeczywistym | |
var browserSync = require('browser-sync').create(); | |
//Sourcemapa | |
var sourcemaps = require('gulp-sourcemaps'); | |
//Autoprefixer -automatycznie dodaje prefixy (Bardzo ulatwia pracę - szczegolnie z flexboxem, ktory ma nieoczywiste prefixy) | |
var autoprefixer = require('gulp-autoprefixer'); | |
//Te dwie paczki sprawią, że gulp watch i gulp-serve nie będzie się wywalał przy każdym błędzie | |
var plumber = require('gulp-plumber'); |
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
:Location /*.php | |
Use php56 | |
:Location | |
# Set the default handler. | |
DirectoryIndex index.php index.html index.htm | |
# Prevent directory listing | |
Options -Indexes |
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
GNU nano 2.2.6 File: szkoly.superkoderzy.pl | |
map $http_host $blogid { | |
default 0; | |
include /var/www/superkoderzytest/wp-content/uploads/nginx-helper/map.conf; | |
} | |
server { | |
listen 80; | |
listen [::]:80; |