12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- application:
- name: 안동시 VMS 통신 서버
- listen-port: 3001
- ftp-home-dir: C:\DRIVE_E\ANDONG_VMS_FTP
- ftp-server-ip: 115.91.94.42
- ftp-server-port: 8871
- ftp-passive-mode: 0
- ftp-user-id: vmsuser
- ftp-user-pswd: vmsuser#1234
- load-db: true
- check-new-form: false
- communication:
- listen-port: 30200
- dump-recv: true
- dump-send: true
- subscription-status: true
- subscription-status-cycle: 30
- esb-server: 192.168.20.99
- esb-port: 9904
- server:
- port: 8904
- spring:
- profiles:
- active: dev
- ---
- spring:
- config:
- activate:
- on-profile: dev
- datasource:
- hikari:
- driver-class-name: com.tmax.tibero.jdbc.TbDriver
- jdbc-url: jdbc:tibero:thin:@115.91.94.42:8629:tibero
- username: ENC(D/mtjX68HkE=)
- password: ENC(D/mtjX68HkE=)
- ---
- spring:
- config:
- activate:
- on-profile: prod
- datasource:
- hikari:
- driver-class-name: com.tmax.tibero.jdbc.TbDriver
- jdbc-url: jdbc:tibero:thin:@10.10.10.11:8629:tibero
- username: ENC(D/mtjX68HkE=)
- password: ENC(zQxSStMUW37QqZ+AJ4OKPg==)
|