Skip to content

Commit

Permalink
Fix default listen adress, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
fiorix committed Mar 17, 2016
1 parent 53a5920 commit a148bf6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apiserver/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type Config struct {
// NewConfig creates and initializes a new Config with default values.
func NewConfig() *Config {
return &Config{
ServerAddr: "localhost:8080",
ServerAddr: ":8080",
TLSCertFile: "cert.pem",
TLSKeyFile: "key.pem",
APIPrefix: "/",
Expand Down
2 changes: 1 addition & 1 deletion apiserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

// Version tag.
var Version = "3.1.3"
var Version = "3.1.4"

// Run is the entrypoint for the freegeoip server.
func Run() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/freegeoip/ansible-playbook/freegeoip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- redis
vars:
nodeexporter_url: http://github.com/prometheus/node_exporter/releases/download/0.11.0/node_exporter-0.11.0.linux-amd64.tar.gz
freegeoip_url: https://github.com/fiorix/freegeoip/releases/download/v3.1.3/freegeoip-3.1.3-linux-amd64.tar.gz
freegeoip_url: https://github.com/fiorix/freegeoip/releases/download/v3.1.4/freegeoip-3.1.4-linux-amd64.tar.gz
freegeoip_params:
- -http=:80
- -https=:443
Expand Down

0 comments on commit a148bf6

Please sign in to comment.