Skip to content

Instantly share code, notes, and snippets.

class A
constructor: (@param) ->
property = 1 # private
method: ->
property + @param
@method: -> #protected
@::property
@sergeybe
sergeybe / nginx_modx.conf
Last active September 2, 2015 14:04
Config for MODX CMS
index index.php;
client_max_body_size 30M;
if ($request_uri ~ " ") {
return 444;
}.
location / {
try_files $uri $uri/ @modx;
index index.php;