svg
This commit is contained in:
parent
7b0327be3f
commit
a704a8190d
|
@ -2,6 +2,7 @@
|
|||
<creole>
|
||||
<files>
|
||||
<file filelist='ninegate' name='/etc/eole/eole-db.d/ninegate-db.yml' rm='True' mkdir='True'/>
|
||||
<file filelist='ninegate' name='/usr/share/eole/posttemplate/90-ninegate' source="ninegate-posttemplate.sh" rm='True' mkdir='True' mode="700"/>
|
||||
</files>
|
||||
|
||||
<containers>
|
||||
|
@ -12,7 +13,6 @@
|
|||
<file filelist="ninegate" name="/var/www/html/ninegate/scripts/ninegate-postservice-00.sh" source="ninegate-postservice-00.sh" rm="True" mode="700" />
|
||||
<file filelist="ninegate" name="/var/www/html/ninegate/src/Cadoles/CoreBundle/Command/data/core-init-01.sql" source="ninegate-init-01.sql" rm="True"/>
|
||||
<file filelist='ninegate' name='/etc/cron.d/ninegate' source='ninegate.cron' rm='True'/>
|
||||
<file filelist='ninegate_websocket' name='/etc/nginx/conf.d/ninegate.conf' source='ninegate.nginx.conf' rm='True'/>
|
||||
|
||||
<service method='apache' servicelist='ninegate'>ninegate</service>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ INSERT IGNORE INTO `niveau01` (`id`, `label`, `siren`) VALUES
|
|||
(-100, 'DRAAF', '130007107');
|
||||
|
||||
INSERT IGNORE INTO `user` (`id`, `niveau01_id`, `username`, `firstname`, `lastname`, `password`, `email`, `avatar`, `role`,`siren`,`authlevel`) VALUES
|
||||
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}euZCgZjWhBu0xUZI9lPK2ncV9oaB+Jqo
|
||||
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}2gaQmmZPBjiDFIDLVGRjTuzPm0TA4eQ9
|
||||
', 'admin@ldapbundle.ac-arno.fr', 'admin.jpg', 'ROLE_ADMIN', '130007107', 'simple');
|
||||
|
||||
|
||||
|
|
|
@ -68,14 +68,10 @@
|
|||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.widget-bordered .widget-event {
|
||||
background-color: #fff !important;
|
||||
padding:5px 10px 5px 10px !important;
|
||||
.widget-bordered .widget-event {
|
||||
background-color: #fff !important;
|
||||
color :#000 !important;
|
||||
padding: 5px !important;
|
||||
border-radius: 10px;
|
||||
color: #000 !important;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.mychat .message {
|
||||
border-radius: 10px;
|
||||
}
|
|
@ -6,4 +6,19 @@ Alias /ninegate /var/www/html/ninegate/web
|
|||
Allow from All
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
php_admin_flag allow_url_fopen On
|
||||
</Directory>
|
||||
</Directory>
|
||||
|
||||
Listen %%adresse_ip_eth0:%%ninegate_websocket_portexterne
|
||||
<VirtualHost %%adresse_ip_eth0:%%ninegate_websocket_portexterne>
|
||||
ErrorLog /var/log/apache2/ssl_error.log
|
||||
CustomLog /var/log/apache2/ssl_access.log common
|
||||
SSLEngine on
|
||||
SSLCertificateFile %%server_cert
|
||||
SSLCertificateKeyFile %%server_key
|
||||
SSLProtocol all -SSLv3 -SSLv2
|
||||
ServerName %%ninegate_websocket_url
|
||||
RewriteEngine On
|
||||
|
||||
ProxyPass / ws://%%adresse_ip_eth0:%%ninegate_websocket_portinterne retry=0 keepalive=On
|
||||
ProxyPassReverse / ws://%%adresse_ip_eth0:%%ninegate_websocket_portinterne retry=0
|
||||
</VirtualHost>
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ "$(CreoleGet activer_apache)" = 'oui' ];then
|
||||
# gestion des modes apache
|
||||
ENMOD="ssl rewrite authnz_ldap proxy headers proxy_http proxy_wstunnel"
|
||||
CreoleRun "a2enmod $ENMOD >/dev/null" web
|
||||
fi
|
||||
|
||||
exit 0
|
|
@ -1,24 +0,0 @@
|
|||
server {
|
||||
listen %%ninegate_websocket_portexterne ssl;
|
||||
|
||||
ssl on;
|
||||
ssl_certificate %%server_cert;
|
||||
ssl_certificate_key %%server_key;
|
||||
|
||||
proxy_connect_timeout 600;
|
||||
proxy_send_timeout 600;
|
||||
proxy_read_timeout 600;
|
||||
send_timeout 600;
|
||||
|
||||
location / {
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header Proxy "";
|
||||
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;
|
||||
proxy_pass http://%%web_url:%%ninegate_websocket_portinterne;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue