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 myapp { | |
server 127.0.0.1:8000; | |
} | |
server { | |
listen 80; | |
server_name localhost; | |
location / { | |
proxy_pass http://myapp; | |
proxy_read_timeout 180; |
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
(define-key input-decode-map "\e[1;10A" [M-S-up]) | |
(define-key input-decode-map "\e[1;10B" [M-S-down]) | |
(define-key input-decode-map "\e[1;10C" [M-S-right]) | |
(define-key input-decode-map "\e[1;10D" [M-S-left]) | |
;(define-key input-decode-map "\e[1;9A" [M-up]) | |
;(define-key input-decode-map "\e[1;9B" [M-down]) | |
;(define-key input-decode-map "\e[1;9C" [M-right]) | |
;(define-key input-decode-map "\e[1;9D" [M-left]) |