Caiyeon / goldfish

A HashiCorp Vault UI written with VueJS and Vault native Go API
https://vault-ui.io
Mozilla Public License 2.0
2.15k stars 166 forks source link

[ERROR]: Launching goldfish At 7:19: Unknown token: 7:19 IDENT https #249

Closed Alexvianet closed 6 years ago

Alexvianet commented 6 years ago

Bug report:

Vault version: Vault v0.8.0 ('af63d879130d2ee292f09257571d371100a513eb')

Goldfish version: 2018/02/27 21:56:19 Goldfish version: v0.9.0

Operating system: Ubuntu 14

Steps to reproduce: just start sudo goldfish -config=goldfish-config.hcl Expected behaviour: all ok Actual behaviour: [ERROR]: Launching goldfish At 7:19: Unknown token: 7:19 IDENT https

my goldfish-config.hcl:

listener "tcp" {          
  address       = ":80"         # listen on default https port 
  tls_disable   = 1       
}                         
vault {                   
  address       = https://vault-dev.net:8200
  tls_skip_verify = 1     
}  

Feature request:

Is this a front-end feature or backend? (or both?)

Description of feature:

Are you able to submit a pull request for this feature?

Alexvianet commented 6 years ago

my https://vault-dev.net:8200 is available and in work for long time and https://github.com/Caiyeon/goldfish/wiki/Production-Deployment: step 1 was successfully done.

Caiyeon commented 6 years ago

Line 7, char 19 of your config file; strings need to be enclosed by double quotation marks in HCL files.

Alexvianet commented 6 years ago

thanks my fail)