-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.plantilla
139 lines (120 loc) · 3.36 KB
/
.env.plantilla
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/bin/sh
# Variables de configuración de la aplicación
# Damos precedencia a las especificadas en línea de ordenes
# Base de datos
if (test "$BD_SERVIDOR" = "") then {
export BD_SERVIDOR=/var/www/var/run/postgresql
} fi;
if (test "$BD_USUARIO" = "") then {
export BD_USUARIO=msipdes
} fi;
if (test "$BD_CLAVE" = "") then {
export BD_CLAVE=xyz
} fi;
if (test "$BD_DES" = "") then {
export BD_DES=sijrscol_des
} fi;
if (test "$BD_PRUEBA" = "") then {
export BD_PRUEBA=sijrscol_pru
} fi;
if (test "$BD_PRO" = "") then {
export BD_PRO=sijrscol_pro
} fi;
# Despliegue
if (test "$CONFIG_HOSTS" = "") then {
export CONFIG_HOSTS=192.168.10.1
} fi;
if (test "$RUTA_RELATIVA" = "") then {
export RUTA_RELATIVA=/
} fi;
if (test "$DIRAP" = "") then {
export DIRAP="$HOME/comp/rails/si_jrscol/"
} fi;
# Para pruebas
if (test "$PUERTOPRU" = "") then {
export PUERTOPRU=31319
} fi;
if (test "$MSIP_REPORTEREGRESION" = "") then {
# Tipicamente en aplicacines msip:reporteregresion y
# en motores app:msip:reporteregresion pero hay motores extraños
# que requieren msip:reporteregresion
export MSIP_REPORTEREGRESION="msip:reporteregresion"
} fi;
# Modo Desarrollo
if (test "$RAILS_ENV" = "") then {
export RAILS_ENV=development
} fi;
if (test "$IPDES" = "") then {
export IPDES=192.168.10.1
} fi;
if (test "$PUERTODES" = "") then {
export PUERTODES=3000
} fi;
if (test "$MAQRECVIVA" = "") then { # Máquina para recarga viva
export MAQRECVIVA=${CONFIG_HOSTS}
} fi;
if (test "$PUERTORECVIVA" = "") then { # Puerto para recarga viva
export PUERTORECVIVA=4600
} fi;
# Modo Producción con unicorn
if (test "$RC" = "") then {
export RC=sjrcol
} fi;
if (test "$PUERTOUNICORN" = "") then {
export PUERTOUNICORN=3015
} fi;
if (test "$USUARIO_AP" = "") then {
export USUARIO_AP=miusuario
} fi;
if (test "$SECRET_KEY_BASE" = "") then {
export SECRET_KEY_BASE=123456789abcdef
} fi;
# Configuraciones requeridas por msip
if (test "$WC_PERMISOS" = "") then {
export WC_PERMISOS="" # IPs que tienen web_console
} fi;
if (test "$MSIP_FORMATO_FECHA" = "") then {
export FORMATO_FECHA=yyyy-mm-dd
} fi;
if (test "$MSIP_RUTA_ANEXOS" = "") then {
export MSIP_RUTA_ANEXOS=/var/www/htdocs/si_jrsens/archivos/anexos/
} fi;
if (test "$MSIP_RUTA_VOLCADOS" = "") then {
export MSIP_RUTA_VOLCADOS=/var/www/htdocs/si_jrsens/archivos/bd/
} fi;
# Configuraciones requeridas por heb412
if (test "$HEB412_RUTA" = "") then {
export HEB412_RUTA=${DIRAP}/public/heb412
} fi;
# Configuraciones de sivel2
if (test "$SIVEL2_CONSWEB_PUBLICA" = "") then {
export SIVEL2_CONSWEB_PUBLICA=
} fi;
if (test "$SIVEL2_CONSWEB_MAX" = "") then {
export SIVEL2_CONSWEB_MAX=2000
} fi;
if (test "$SIVEL2_CONSWEB_EPILOGO" = "") then {
export SIVEL2_CONSWEB_EPILOGO="<br>Si requiere más puede suscribirse a SIVeL Pro"
} fi;
if (test "$SIVEL2_MAPAOSM_DIASATRAS" = "") then {
export SIVEL2_MAPAOSM_DIASATRAS=182
} fi;
# Configuraciones requeridas por cor1440
if (test "$COR1440_PERMISOS_POR_OFICINA" = "") then {
export COR1440_PERMISOS_POR_OFICINA=1
} fi;
if (test "$SMTP_MAQ" = "") then {
export SMTP_MAQ=miservidor.org
} fi;
if (test "$SMTP_PUERTO" = "") then {
export SMTP_PUERTO=465
} fi;
if (test "$SMTP_DOMINIO" = "") then {
export SMTP_DOMINIO=midominio.org
} fi;
if (test "$SMTP_USUARIO" = "") then {
export SMTP_USUARIO=miusuario
} fi;
if (test "$SMTP_CLAVE" = "") then {
export SMTP_CLAVE=miclave
} fi;