forked from jeedom/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
110 lines (95 loc) · 4.59 KB
/
README
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
Jeedom réalisé par Loïc Gevrey
1) PRE-REQUIS
- PHP 5.3
- MySQL
- PHP cURL
- nodeJS
Si vous n'avez pas encore installé les dépendances :
apt-get update
apt-get install nginx-common nginx-full
apt-get install mysql-client mysql-common mysql-server mysql-server-core
apt-get install nodejs php5-common php5-fpm php5-cli php5-curl php5-json
Si vous avez besoin du LDAP :
apt-get install php5-ldap
2) Installation
a) Configurer core/config/common.config.sample.php et le renommer en core/config/common.config.php
- Configurer l'accès à la BDD
b) En ligne de commandes exécuter php install/install.php
3) Configuration nginx
- Simple
#######################################################################
location / {
try_files $uri $uri/ /index.html /index.php;
}
location /nodeJS/ {
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:8070/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_redirect off;
}
location /socket.io/ {
proxy_pass http://127.0.0.1:8070/socket.io/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_redirect off;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
#######################################################################
- Vhosts avec SSL
#######################################################################
server {
listen 443;
server_name mon.domain.fr;
ssl on;
ssl_certificate /etc/nginx/certs/jeedom.crt;
ssl_certificate_key /etc/nginx/certs/jeedom.key;
client_max_body_size 20M;
error_page 497 https://$host$request_uri;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
location /nodeJS/ {
proxy_set_header X-NginX-Proxy true;
proxy_pass http://serverIP:NodeJsPort/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_redirect off;
}
location /socket.io/ {
proxy_pass http://serverIP:NodeJsPort/socket.io/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_redirect off;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
#Redirection des requêtes http en https
server {
listen 80;
server_name mon.domaine.fr www.mon.domaine.fr;
rewrite ^(.*) https://$server_name$1 permanent;
}
#######################################################################
4) Configuration de jeedom
a) Aller dans Admin puis récupérer la clef api
b) Ajouter cette ligne à crontab : "* * * * * * su --shell=/bin/bash - www-data -c "/usr/bin/php /usr/share/nginx/www/jeedom/core/php/jeeCron.php" >> /dev/null "