Skip to content

Commit

Permalink
Add api compatibility configuration to application.properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
KomachiSion committed Nov 6, 2024
1 parent 507e278 commit b05801b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
17 changes: 16 additions & 1 deletion console/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,21 @@ nacos.k8s.sync.enabled=false
### enable to support prometheus service discovery
#nacos.prometheus.metrics.enabled=true

#************** Console UI Configuration ***************#

### Turn on/off the nacos console ui.
#nacos.console.ui.enabled=true

#*************** Deployment Type Configuration ***************#

### Sets the deployment type: 'merged' for joint deployment, 'separate' for separate deployment
nacos.deployment.type=merged
nacos.deployment.type=merged

#************** Nacos Admin Compatibility Related Configurations ***************#

### Enabled for open API compatibility
# nacos.core.api.compatibility.client.enabled=true
### Enabled for admin API compatibility
# nacos.core.api.compatibility.admin.enabled=true
### Enabled for console API compatibility
# nacos.core.api.compatibility.console.enabled=false
21 changes: 19 additions & 2 deletions distribution/conf/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -301,5 +301,22 @@ nacos.k8s.sync.enabled=false
## Sets a time(milliseconds) that specify the most aggressive keep-alive time clients are permitted to configure. The typical default is 5 minutes
#nacos.remote.server.grpc.cluster.permit-keep-alive-time=300000

## open nacos default console ui
#nacos.console.ui.enabled=true
#************** Console UI Configuration ***************#

### Turn on/off the nacos console ui.
#nacos.console.ui.enabled=true

### Since 3.0
#*************** Deployment Type Configuration ***************#

### Sets the deployment type: 'merged' for joint deployment, 'separate' for separate deployment
nacos.deployment.type=merged

#************** Nacos Admin Compatibility Related Configurations ***************#

### Enabled for open API compatibility
# nacos.core.api.compatibility.client.enabled=true
### Enabled for admin API compatibility
# nacos.core.api.compatibility.admin.enabled=true
### Enabled for console API compatibility
# nacos.core.api.compatibility.console.enabled=false

0 comments on commit b05801b

Please sign in to comment.