Masaki Hidano

Results 11 comments of Masaki Hidano

Hi techupin, I did that. Actually, .htaccess should have no effect with nginx. You should write the rule in .conf file like this (just the core part) ``` location /...

What we have to consider is that there is only one set of these assets in a project while hosting have multiple deployments including preview channels. If the preview deployment...

> Document how to use this action in conjunction with https://github.com/w9jds/firebase-action? +1 > Add a new option to this action that let you run an arbitrary Firebase CLI command? +1

Any other solution other than removing StrictMode?

For Python 2, I guess you have to fix `str(header)` to `header.encode('utf-8')`. ``` - headers = [str(header) for header in headers] + headers = [header.encode('utf-8') for header in headers] ```

Providerのdefault_zoneを設定することで回避できました。 ```TypeScript // Deploy Zones const zones = ['tk1a', 'tk1b'] // 東京第1, 東京第2 const archiveImages = ['113501244064', '113501244081'] // Ubuntu Server 22.04.2 LTS 64bit (cloudimg) const defaultZoneIndex = 1 //...

> Maybe we could add a new config option (disabled by default) if urlencode should be used instead of substituting with ASCII. Agreed!

I think unquote in resource_dictize makes no effect for ascii strings. So only converting to ascii should be parameterized. Right?

I already did the workaround with CDK and It worked. But I want to do with copilot for future maintenance. ```js const vpc = new ec2.Vpc(this, 'VPC', { cidr: '10.0.0.0/16',...