├── README.md ├── apache-example.conf ├── apps.md ├── apps.sh ├── atom.md ├── console.md ├── copy.md ├── macos-settings.md ├── nginx-proxy.conf ├── nginx.md ├── nginx ├── config │ ├── cors.conf │ ├── disable-access-log.conf │ ├── errors.conf │ ├── errors │ │ ├── 400.html │ │ ├── 401.html │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── 502.html │ │ ├── 503.html │ │ ├── 504.html │ │ └── font.css │ ├── gzip.conf │ ├── proxy-socket.conf │ ├── proxy.conf │ ├── ssl.conf │ ├── ssl │ │ └── isuvorov.com.conf │ ├── static-index.conf │ ├── static.conf │ └── www.conf ├── default.conf ├── docker-compose.yml ├── error.html ├── errors.js ├── nginx.conf ├── public │ ├── err.css │ └── err.js └── site-example.conf ├── nodejs.md ├── osx.md ├── raw ├── cdn-templates.md ├── edu.md ├── lodash.md └── skb │ ├── command-tasks.md │ ├── project-1.md │ ├── task-ReactComponent-Avatar.md │ ├── task-ReactComponent-StatusButton.md │ ├── task-lodash.md │ └── task-nested-config.md ├── ssh.md ├── vscode.md ├── vscode.sh └── vscode ├── eslint.code-snippets ├── keybindings.json └── settings.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/README.md -------------------------------------------------------------------------------- /apache-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/apache-example.conf -------------------------------------------------------------------------------- /apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/apps.md -------------------------------------------------------------------------------- /apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/apps.sh -------------------------------------------------------------------------------- /atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/atom.md -------------------------------------------------------------------------------- /console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/console.md -------------------------------------------------------------------------------- /copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/copy.md -------------------------------------------------------------------------------- /macos-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/macos-settings.md -------------------------------------------------------------------------------- /nginx-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx-proxy.conf -------------------------------------------------------------------------------- /nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx.md -------------------------------------------------------------------------------- /nginx/config/cors.conf: -------------------------------------------------------------------------------- 1 | add_header Access-Control-Allow-Origin *; 2 | -------------------------------------------------------------------------------- /nginx/config/disable-access-log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/disable-access-log.conf -------------------------------------------------------------------------------- /nginx/config/errors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors.conf -------------------------------------------------------------------------------- /nginx/config/errors/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/400.html -------------------------------------------------------------------------------- /nginx/config/errors/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/401.html -------------------------------------------------------------------------------- /nginx/config/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/403.html -------------------------------------------------------------------------------- /nginx/config/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/404.html -------------------------------------------------------------------------------- /nginx/config/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/500.html -------------------------------------------------------------------------------- /nginx/config/errors/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/502.html -------------------------------------------------------------------------------- /nginx/config/errors/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/503.html -------------------------------------------------------------------------------- /nginx/config/errors/504.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/504.html -------------------------------------------------------------------------------- /nginx/config/errors/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/errors/font.css -------------------------------------------------------------------------------- /nginx/config/gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/gzip.conf -------------------------------------------------------------------------------- /nginx/config/proxy-socket.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/proxy-socket.conf -------------------------------------------------------------------------------- /nginx/config/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/proxy.conf -------------------------------------------------------------------------------- /nginx/config/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/ssl.conf -------------------------------------------------------------------------------- /nginx/config/ssl/isuvorov.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/ssl/isuvorov.com.conf -------------------------------------------------------------------------------- /nginx/config/static-index.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/static-index.conf -------------------------------------------------------------------------------- /nginx/config/static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/static.conf -------------------------------------------------------------------------------- /nginx/config/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/config/www.conf -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- 1 | include /etc/nginx/config/projects/*.conf; 2 | -------------------------------------------------------------------------------- /nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/docker-compose.yml -------------------------------------------------------------------------------- /nginx/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/error.html -------------------------------------------------------------------------------- /nginx/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/errors.js -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/public/err.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/public/err.css -------------------------------------------------------------------------------- /nginx/public/err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/public/err.js -------------------------------------------------------------------------------- /nginx/site-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nginx/site-example.conf -------------------------------------------------------------------------------- /nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/nodejs.md -------------------------------------------------------------------------------- /osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/osx.md -------------------------------------------------------------------------------- /raw/cdn-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/cdn-templates.md -------------------------------------------------------------------------------- /raw/edu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/edu.md -------------------------------------------------------------------------------- /raw/lodash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/lodash.md -------------------------------------------------------------------------------- /raw/skb/command-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/skb/command-tasks.md -------------------------------------------------------------------------------- /raw/skb/project-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/skb/project-1.md -------------------------------------------------------------------------------- /raw/skb/task-ReactComponent-Avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/skb/task-ReactComponent-Avatar.md -------------------------------------------------------------------------------- /raw/skb/task-ReactComponent-StatusButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/skb/task-ReactComponent-StatusButton.md -------------------------------------------------------------------------------- /raw/skb/task-lodash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/skb/task-lodash.md -------------------------------------------------------------------------------- /raw/skb/task-nested-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/raw/skb/task-nested-config.md -------------------------------------------------------------------------------- /ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/ssh.md -------------------------------------------------------------------------------- /vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/vscode.md -------------------------------------------------------------------------------- /vscode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/vscode.sh -------------------------------------------------------------------------------- /vscode/eslint.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/vscode/eslint.code-snippets -------------------------------------------------------------------------------- /vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/vscode/keybindings.json -------------------------------------------------------------------------------- /vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isuvorov/notes/HEAD/vscode/settings.json --------------------------------------------------------------------------------