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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="slim" patternSyntax="Wildcard"> | |
<match url="*" /> | |
<conditions> | |
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> | |
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> |
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
[Definition] | |
failregex = ^<HOST> -.*\"(GET|POST).* | |
ignoreregex = ^<HOST> -.*\"(GET|POST).*Googlebot |
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
[nginx-req-limit] | |
enabled = true | |
port = http,https | |
filter = nginx-req-limit | |
logpath = /var/log/nginx/access_log | |
findtime = 120 | |
bantime = 120 | |
maxretry = 200 |
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
[nginx-404] | |
enabled = true | |
port = http,https | |
filter = nginx-404 | |
logpath = /var/log/nginx/access_log | |
maxretry = 10 | |
findtime = 30 | |
bantime = 7200 |
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
[Definition] | |
failregex = ^<HOST>.*"(GET|POST).*" (403|404) .*$ | |
ignoreregex = |
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
DROP FUNCTION IF EXISTS slugify; | |
DELIMITER ;; | |
CREATE DEFINER='root'@'localhost' | |
FUNCTION slugify (temp_string VARCHAR(200) CHARSET utf8) | |
RETURNS VARCHAR(200) | |
DETERMINISTIC | |
BEGIN | |
DECLARE x, y , z Int; | |
DECLARE new_string VARCHAR(200); | |
DECLARE is_allowed Bool; |
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
Show hidden characters
[ | |
{ "keys": ["ctrl+t"], "command": "side_bar_new_file2" }, | |
{ "keys": ["f2"], "command": "side_bar_rename" }, | |
{ "keys": ["ctrl+alt+f"], "command": "side_bar_find_files_path_containing" }, | |
{"keys": ["ctrl+super+r"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+."], "command": "reindent" , "args": {"single_line": false}}, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["ctrl+u"], "command": "ftp_sync_current" } | |
] |
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
"detect_slow_plugins": true, | |
"font_face": "Consolas", | |
"font_size": 11, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"soda_folder_icons": false, |
This file has been truncated, but you can view the full file.
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
DROP TABLE IF EXISTS `airports`; | |
CREATE TABLE IF NOT EXISTS `airports` ( | |
`code` varchar(50) COLLATE utf8_turkish_ci DEFAULT NULL, | |
`name` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL, | |
`cityCode` varchar(50) COLLATE utf8_turkish_ci DEFAULT NULL, | |
`cityName` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL, | |
`countryName` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL, | |
`countryCode` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL, | |
`timezone` varchar(8) COLLATE utf8_turkish_ci DEFAULT NULL, |