店名 | 料理 | ランチ時間 | タバコ | 一言 |
---|---|---|---|---|
肉割烹 将泰庵 | 肉料理 | 11:30~14:00 | 禁煙? | あんまり美味しくなかった(少なくとも鉄火丼は) コスパ悪い |
五十亭 | 焼鳥 | 11:30~14:00 | 昼禁煙? | ランチ 780 円 つくねカツおいしかった。ご飯おかわりOK。 |
タイ料理研究所 | タイ料理 | 11:30~14:30 | 禁煙? | 狭い そこそこ高い(1200円くらい) 美味しい |
ハノイのホイさん | フォー | 11:30~14:30 | 禁煙? | そこそこ広い ランチで丼などがつく よく閉まっているイメージがある |
トローズ (TORO'S) | ハンバーグ | 11:30~14:30 | 禁煙? | 美味しい 早い時間にランチ終了していることが結構ある |
もんじろう | 唐揚げ 焼鳥 |
11:30~14:30 | 喫煙 | 定食の肉がデカイ、味良い、値段もそこそこで満足度高い 店内狭い&喫煙なので非喫煙者にはしんどいかもしれない |
海浜食堂 たけだ | 魚定食 | 11:30~15:00 | 喫煙 | 秋刀魚が美味しい 狭い おばちゃんがキュート |
[カンティプール](http://tabelog.com/tokyo/A1303 |
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
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "VPC knowhow template", | |
"Parameters": { | |
"KeyName": { | |
"Description": "Name of an existing EC2 KeyPair to enable SSH access to the instances", | |
"Type": "String", | |
"MinLength": "1", | |
"MaxLength": "64", | |
"AllowedPattern": "[-_ a-zA-Z0-9]*", |
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
# redirect http to https | |
set $redirect ""; | |
if ($http_x_forwarded_proto != 'https') { | |
set $redirect "1"; | |
} | |
if ($http_user_agent !~* ELB-HealthChecker) { | |
set $redirect "${redirect}1"; | |
} | |
if ($http_host ~ "your-nifty-domain.com") { | |
set $redirect "${redirect}1"; |