svg
This commit is contained in:
parent
a704a8190d
commit
4b0d392e58
|
@ -8,7 +8,7 @@ INSERT IGNORE INTO `niveau01` (`id`, `label`, `siren`) VALUES
|
||||||
(-100, 'DRAAF', '130007107');
|
(-100, 'DRAAF', '130007107');
|
||||||
|
|
||||||
INSERT IGNORE INTO `user` (`id`, `niveau01_id`, `username`, `firstname`, `lastname`, `password`, `email`, `avatar`, `role`,`siren`,`authlevel`) VALUES
|
INSERT IGNORE INTO `user` (`id`, `niveau01_id`, `username`, `firstname`, `lastname`, `password`, `email`, `avatar`, `role`,`siren`,`authlevel`) VALUES
|
||||||
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}2gaQmmZPBjiDFIDLVGRjTuzPm0TA4eQ9
|
(-100, -100, 'admin', 'Administrateur', 'draaf', '{SSHA}30Z8NQIFHi2TUxnZr8sENMbBiOWgonju
|
||||||
', 'admin@ldapbundle.ac-arno.fr', 'admin.jpg', 'ROLE_ADMIN', '130007107', 'simple');
|
', 'admin@ldapbundle.ac-arno.fr', 'admin.jpg', 'ROLE_ADMIN', '130007107', 'simple');
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,8 +29,7 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.msgdiv {
|
.msgdiv {
|
||||||
float:left;
|
padding-left:60px;
|
||||||
padding-left:10px;
|
|
||||||
}
|
}
|
||||||
.msgtitle {
|
.msgtitle {
|
||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
|
|
|
@ -13,8 +13,13 @@ Listen %%adresse_ip_eth0:%%ninegate_websocket_portexterne
|
||||||
ErrorLog /var/log/apache2/ssl_error.log
|
ErrorLog /var/log/apache2/ssl_error.log
|
||||||
CustomLog /var/log/apache2/ssl_access.log common
|
CustomLog /var/log/apache2/ssl_access.log common
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
|
%if %%cert_type == "letsencrypt"
|
||||||
|
SSLCertificateFile /etc/ssl/letsencrypt/conf/live/%%ninegate_websocket_url/cert.pem
|
||||||
|
SSLCertificateKeyFile /etc/ssl/letsencrypt/conf/live/%%ninegate_websocket_url/privkey.pem
|
||||||
|
%else
|
||||||
SSLCertificateFile %%server_cert
|
SSLCertificateFile %%server_cert
|
||||||
SSLCertificateKeyFile %%server_key
|
SSLCertificateKeyFile %%server_key
|
||||||
|
%end if
|
||||||
SSLProtocol all -SSLv3 -SSLv2
|
SSLProtocol all -SSLv3 -SSLv2
|
||||||
ServerName %%ninegate_websocket_url
|
ServerName %%ninegate_websocket_url
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
|
|
Loading…
Reference in New Issue