HCL config issue for connect and ACL

Hi, i am starting to dig into consul for spiffe caps. i am looking around on a non entreprise env for now. I am not abble to enabled the ACL and side-car proxy can’t connect. consul info confirm the ACL section is not read. i supposed it’s the same for connect. Any tips will be appreciate, it’s only connect with the -dev mode .
PS: Using the last consul free release on ARM.

consul.hcl
{
* “datacenter”: “east-bondi”,*
* “data_dir”: “/home/pi/center/consul”,*
* “log_level”: “INFO”,*
* “node_name”: “Z6Secured-N1”,*
* “server”: true,*
* “bootstrap”: true,*
* “ui”: true ,*
* “addresses”: {*
* “http”: “0.0.0.0”,*
* “http”: “127.0.0.1”*
* “http”: “192.168.20.68”*
* }*
}
connect {
** * enabled = true***
** }**
** acl{**
** * enabled=true***
** * }***

Hi, I re-insert my config.hcl file on which CONNECT and ACL seems not to be activate. Thanks for any help. i am blocked there to activate connect and acl to undertand the potential of consul.

{
“datacenter”: “east-bondi”,
“data_dir”: “/home/pi/center/consul”,
“log_level”: “INFO”,
“node_name”: “Z6Secured-N1”,
“server”: true,
“bootstrap”: true,
“ui”: true ,
“addresses”: {
“http”: “0.0.0.0”,
“http”: “127.0.0.1”
“http”: “192.168.20.68”
}
connect {
enabled = true
}
}
connect {
enabled = true
}
acl{
enabled=true
}

Hi, solved. Apologize. I am starting with consul. The ACL object need to be insert with “acl” in the main server agent object.
I am then able to bootstrap ACL. Topic closed.
{
“datacenter”: “east-bondi”,
“data_dir”: “/home/pi/center/consul”,
“log_level”: “INFO”,
“node_name”: “Z6Secured-N1”,
“server”: true,
“bootstrap”: true,
“ui”: true ,
“acl”: {
“enabled”: true,
},
“addresses”: {
“http”: “0.0.0.0”,
“http”: “127.0.0.1”
“http”: “192.168.20.68”
}