http://nginx.org/en/docs/http/configuring_https_servers.html
http://nginx.org/ja/docs/http/configuring_https_servers.html
default_serverは対象のポートに対して有効だから
下記のようにポート毎にデフォルトサーバを指定できる。
server {
package com.example.chapter7.traits | |
class DecoratorTraits | |
abstract class Check { | |
def check():String ="Checked application details" | |
} | |
trait employmentCheck extends Check { | |
override def check():String="Checked employment details " +super.check() |
http://nginx.org/en/docs/http/configuring_https_servers.html
http://nginx.org/ja/docs/http/configuring_https_servers.html
default_serverは対象のポートに対して有効だから
下記のようにポート毎にデフォルトサーバを指定できる。
server {
" vim: set ff=unix tabstop=4 shiftwidth=0 softtabstop=-1 noexpandtab fileencoding=utf-8 fileformat=unix filetype=vim foldmethod=marker : | |
" https://gist.github.com/kotashiratsuka/eac44d7e569f3721be5a12b8c221cab6 | |
" 基本コンセプト | |
" * scp1ファイルで環境移行済ます | |
" * mac/win/linux/ios環境依存しない、エラーが出ない | |
" * 自分以外の人が触っても混乱しないようにする(rootで複数人が使う場合などに配慮) | |
" * プラグインは極力使わない、プラグインは補助輪と割り切る、どうせ数年立ったら使わなくなる | |
" * プラグイン強化するくらいならその分vimの標準操作を速くできるように頭と指を鍛える | |
" * tips混じってるけど気にしない |