Skip to content
Snippets Groups Projects
Commit 1f04c39b authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Removed Docker files (moved into dedicated repo)

parent 358ff07d
Branches
No related tags found
No related merge requests found
CREATE DATABASE rap;
CREATE USER rap@'%' IDENTIFIED BY 'rap123';
GRANT ALL PRIVILEGES ON rap.* TO rap@'%';
USE rap;
FROM mariadb:10.4
ENV MYSQL_ROOT_PASSWORD=root
ADD docker/db/event.cnf /etc/mysql/conf.d/
ADD docker/db/1-user.sql /docker-entrypoint-initdb.d/
ADD sql/setup-database.sql /docker-entrypoint-initdb.d/
RUN sed -i.old '1s;^;USE rap\;\n;' /docker-entrypoint-initdb.d/setup-database.sql
[mysqld]
event_scheduler=1
<Directory /var/www/html/rap-ia2/>
AllowOverride All
</Directory>
<Directory /var/www/html/rap-ia2/auth/x509/>
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
SSLVerifyClient require
SSLVerifyDepth 10
SSLOptions +ExportCertData
</Directory>
<Location /rap-ia2/auth/eduGAIN>
AuthType shibboleth
ShibRequestSetting requireSession 1
Require valid-user
</Location>
#<Directory /var/www/html/rap-ia2/auth/eduGAIN/>
# AuthType shibboleth
# ShibRequestSetting requireSession 1
# Require valid-user
#</Directory>
<Directory /var/www/html/rap-ia2/logs/>
Order deny,allow
Deny From All
</Directory>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment