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
class A | |
constructor: (@param) -> | |
property = 1 # private | |
method: -> | |
property + @param | |
@method: -> #protected | |
@::property |
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
index index.php; | |
client_max_body_size 30M; | |
if ($request_uri ~ " ") { | |
return 444; | |
}. | |
location / { | |
try_files $uri $uri/ @modx; | |
index index.php; |
NewerOlder