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
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'jiangmiao/auto-pairs' | |
Plug 'luochen1990/rainbow' | |
Plug 'calviken/vim-gdscript3' | |
let g:rainbow_active = 1 | |
call plug#end() |
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
upstream php-handler { | |
server unix:/var/run/php/php7.2-fpm.sock; | |
} | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name nc.mydomain.com; | |
# enforce https | |
return 301 https://$server_name$request_uri; |