fleet/test/upgrade/nginx/fleet-b.conf
Michal Nicpon d4be5ad2a1
add upgrade tests (#6596)
* add upgrade tests

* fix lint issues

go.mod

* remove req.cnf

* revert unrelated changes

* make version configurable in test

* fix golangci-lint ruleguard issue

Related to https://github.com/go-critic/go-critic/issues/1152
Need to have github.com/quasilyte/go-ruleguard/dsl

* fix lint issues

* fix

* clean up docker-compose.yml

* fix http request

* add readme

* fix lint issues

* address feedback

* fix

* add platform

* address feedback

* run go fmt
2022-07-19 15:11:51 -06:00

12 lines
196 B
Plaintext

server {
listen 443 ssl;
server_name fleet;
ssl_certificate fleet.crt;
ssl_certificate_key fleet.key;
location / {
proxy_pass http://fleet-b:8080;
}
}