デバッグ用ドメイン:hello-slide.net
- デバッグ用ドメイン:
hello-slide.jp
NEXT_PUBLIC_API_DOMAIN=api.hello-slide.jp
NEXT_PUBLIC_DOMAIN=hello-slide.jp
# debian linux
sudo vi /etc/hosts
# mac
sudo vi /private/etc/hosts
172.0.0.1 hello-slide.net
Cookieにセキュア属性がついているためsslじゃないとログインできない!!
- 必要なもの
- Openssl
openssl req -x509 -out certificates/localhost.crt -keyout certificates/localhost.key \
-newkey rsa:2048 -nodes -sha256 \
-subj '/CN=localhost' -extensions EXT -config <( \
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
yarn run dev:ssl