You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, if you want to add https, you need to setup the `DOMAIN` variable:
117
-
118
-
```bash
119
-
export DOMAIN="your domain"
121
+
export DOMAIN="your domain"# it can be arbitrary if not using HTTPS or running in local environments
120
122
```
121
123
122
124
`Note: Remember to not use hard set env variables in production. Use your cloud provider secure alternative`
123
125
124
-
It's not mandatory, but we recommend you doing that. In case you're going to setup HTTPS, there's a script to setup your certs using `certbot`. Doing that is, sometimes, very trick, so I'm letting here the setup I did in my environment, but remember to check [let's encrypt documentation](https://letsencrypt.org/docs/) and [certbot's](https://certbot.eff.org/) as well.
126
+
127
+
Using HTTPS is not mandatory, but we recommend you doing that. In case you're going to setup HTTPS, there's a script to setup your certs using `certbot`. Doing that is, sometimes, very trick, so I'm letting here the setup I did in my environment, but remember to check [let's encrypt documentation](https://letsencrypt.org/docs/) and [certbot's](https://certbot.eff.org/) as well.
125
128
126
129
In my case, I bought a real domain that can be reach outside on the internet and them used certbot to generate the certificates.
127
130
@@ -257,6 +260,8 @@ chmod +x test.sh
257
260
./test.sh
258
261
```
259
262
263
+
You can also change it to run the http version, just update the `dev-compose.yml` file.
0 commit comments