mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
Merge pull request #7 from offen/local-ssl
Enable using ssl in local development
This commit is contained in:
commit
af42f29587
@ -10,6 +10,6 @@ insert_final_newline = true
|
|||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
|
|
||||||
[{*.js,*.yml,Gopkg.toml}]
|
[{*.js,*.yml,*.md,Gopkg.toml}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.vscode
|
||||||
|
# mkcert certificates
|
||||||
|
*.pem
|
28
README.md
28
README.md
@ -12,6 +12,34 @@ Guidelines for running and developing the Software will be added when it makes s
|
|||||||
|
|
||||||
### Developing the application
|
### Developing the application
|
||||||
|
|
||||||
|
#### Local cookies and SSL
|
||||||
|
|
||||||
|
In local development __offen__ requires to be served both via SSL (in order to use window.crypto) as well as a `local.offen.org` host.
|
||||||
|
|
||||||
|
This requires the following steps to be taken:
|
||||||
|
|
||||||
|
1. Edit your `/etc/hosts` to include the following line:
|
||||||
|
```
|
||||||
|
127.0.0.1 local.offen.org
|
||||||
|
```
|
||||||
|
2. Install and setup [mkcert](https://github.com/FiloSottile/mkcert). Assuming you have Go installed, this looks like:
|
||||||
|
```
|
||||||
|
$ go get -u github.com/FiloSottile/mkcert
|
||||||
|
$ mkcert -install
|
||||||
|
```
|
||||||
|
3. Navigate into the repository root and create a local certificate and key for the `local.offen.org` host:
|
||||||
|
```
|
||||||
|
$ mkcert local.offen.org
|
||||||
|
```
|
||||||
|
|
||||||
|
You can test setup by starting the application:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ docker-compose up
|
||||||
|
```
|
||||||
|
|
||||||
|
Now you should be able to access <https://local.offen.org:8080/status> in your browser without any security warnings.
|
||||||
|
|
||||||
#### `server`
|
#### `server`
|
||||||
|
|
||||||
To work on the `server` you will need to install `docker-compose` and Go 1.12+.
|
To work on the `server` you will need to install `docker-compose` and Go 1.12+.
|
||||||
|
@ -3,13 +3,15 @@ server:
|
|||||||
working_dir: /server
|
working_dir: /server
|
||||||
volumes:
|
volumes:
|
||||||
- ./server:/server
|
- ./server:/server
|
||||||
|
- ./local.offen.org.pem:/server/local.offen.org.pem
|
||||||
|
- ./local.offen.org-key.pem:/server/local.offen.org-key.pem
|
||||||
- $GOPATH/pkg/mod:/go/pkg/mod
|
- $GOPATH/pkg/mod:/go/pkg/mod
|
||||||
environment:
|
environment:
|
||||||
- GOPATH=/go
|
- GOPATH=/go
|
||||||
- POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable
|
- POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
command: go run cmd/server/main.go -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable
|
command: go run cmd/server/main.go -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable -key local.offen.org-key.pem -cert local.offen.org.pem
|
||||||
links:
|
links:
|
||||||
- database
|
- database
|
||||||
|
|
||||||
@ -23,6 +25,8 @@ vault:
|
|||||||
working_dir: /vault
|
working_dir: /vault
|
||||||
volumes:
|
volumes:
|
||||||
- ./vault:/vault
|
- ./vault:/vault
|
||||||
|
- ./local.offen.org.pem:/vault/local.offen.org.pem
|
||||||
|
- ./local.offen.org-key.pem:/vault/local.offen.org-key.pem
|
||||||
command: npm start -- --port 9977
|
command: npm start -- --port 9977
|
||||||
ports:
|
ports:
|
||||||
- 9977:9977
|
- 9977:9977
|
||||||
|
Loading…
Reference in New Issue
Block a user