-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.plantilla
128 lines (111 loc) · 3.18 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
#!/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=sipdes
} fi;
if (test "$BD_CLAVE" = "") then {
export BD_CLAVE=xyz
} fi;
if (test "$BD_DES" = "") then {
export BD_DES=sibdhn_des
} fi;
if (test "$BD_PRUEBA" = "") then {
export BD_PRUEBA=sibdhn_pru
} fi;
if (test "$BD_PRO" = "") then {
export BD_PRO=sibdhn_pro
} fi;
# Despliegue común desarrollo y producción
if (test "$CONFIG_HOSTS" = "") then {
export CONFIG_HOSTS="192.168.10.1"
} fi;
if (test "$RUTA_RELATIVA" = "") then {
export RUTA_RELATIVA=/bdhn/si/
} fi;
if (test "$DIRAP" = "") then {
export DIRAP=/var/www/htdocs/si_bdhn
} fi;
if (test "$RAILS_ENV" = "") then {
export RAILS_ENV=development
} fi;
# Despliegue en modo desarrollo
if (test "$IPDES" = "") then {
export IPDES=192.168.10.1
} fi;
if (test "$PUERTODES" = "") then {
export PUERTODES=3000
} fi;
if (test "$MAQRECVIVA" = "") then { # Conexión para recarga viva
export MAQRECVIVA="$CONFIG_HOSTS"
} fi;
if (test "$PUERTORECVIVA" = "") then { # Puerto para recarga viva
export PUERTORECVIVA=4500
} fi;
# Despliegue en modo producción con unicorn
if (test "$RC" = "") then {
export RC=sibdhn
} fi;
if (test "$PUERTOUNICORN" = "") then {
export PUERTOUNICORN=3015
} fi;
if (test "$USUARIO_AP" = "") then {
export USUARIO_AP=miusuario
} fi;
if (test "$ORIGEN_CORS" = "") then {
# Permite peticiones al API desde los siguientes dominios
export ORIGEN_CORS="localhost:8080,mi.dominio.org,192.168.1.1:3000"
} fi;
# Configuraciones requeridas por msip
if (test "$MSIP_FORMATO_FECHA" = "") then {
export MSIP_FORMATO_FECHA='dd/M/yyyy'
} fi;
if (test "$MSIP_RUTA_ANEXOS" = "") then {
export MSIP_RUTA_ANEXOS=${DIRAP}/archivos/anexos
} fi;
if (test "$MSIP_RUTA_VOLCADOS" = "") then {
export MSIP_RUTA_VOLCADOS=${DIRAP}/archivos/bd
} fi;
if (test "$MSIP_TITULO" = "") then {
export MSIP_TITULO="SIVeL"
} fi;
if (test "$USUARIO_ADMIN_PRUEBA" = "") then {
export USUARIO_ADMIN_PRUEBA="sivel2"
} fi;
if (test "$USUARIO_ADMIN_CLAVE" = "") then {
export USUARIO_ADMIN_CLAVE="sivel2"
} 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_CONSWEB_PIE" = "") then {
export SIVEL2_CONSWEB_PIE=''
} fi;
if (test "$SIVEL2_MAPAOSM_DIASATRAS" = "") then {
export SIVEL2_MAPAOSM_DIASATRAS=182
} fi;
if (test "$SIVEL2_MAPAOSM_LATINICIAL" = "") then {
export SIVEL2_MAPAOSM_LATINICIAL="14.522"
} fi;
if (test "$SIVEL2_MAPAOSM_LONGINICIAL" = "") then {
export SIVEL2_MAPAOSM_LONGINICIAL="-86.861"
} fi;
# Exportación a otro servidor
if (test "$SIVEL2_EXP_USUARIO" = "") then {
export SIVEL2_EXP_USUARIO=miusuario
} fi;