| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "Application": {
- "Environment": "Production"
- },
- "ConnectionStrings": {
- "EmbaseDb": "Host=prod-db.elsevier.com;Port=5432;Database=embase;Username=embase_user;Password=changeme"
- },
- "Sftp": {
- "Host": "sftp.elsevier.com",
- "Port": 22,
- "Username": "embase_sftp",
- "Password": "",
- "PrivateKeyPath": "/run/secrets/sftp_key",
- "RemotePath": "/incoming/embase/conference/"
- },
- "Packaging": {
- "PdfSourcePath": "/production/articles/pdf/",
- "TempWorkingPath": "/tmp/",
- "ZipPrefix": "emconflum",
- "ZipPadLength": 7
- },
- "Scheduler": {
- "CronExpression": "0 0 2 * * ?",
- "TimeZone": "Asia/Kolkata"
- },
- "Serilog": {
- "MinimumLevel": {
- "Default": "Information",
- "Override": {
- "Microsoft": "Warning",
- "Quartz": "Information",
- "System": "Warning"
- }
- },
- "WriteTo": [
- {
- "Name": "Console",
- "Args": {
- "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}"
- }
- },
- {
- "Name": "File",
- "Args": {
- "path": "/logs/scheduler.log",
- "rollingInterval": "Day",
- "retainedFileCountLimit": 30,
- "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}"
- }
- }
- ]
- }
- }
|