Skip to content

Commit 1513e75

Browse files
committed
Use the Moodle Router as a FallbackResource
1 parent 560e0ba commit 1513e75

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ RUN /tmp/setup/locales-gen.sh
3333
ADD root/tmp/setup/php-extensions.sh /tmp/setup/php-extensions.sh
3434
RUN /tmp/setup/php-extensions.sh
3535

36-
# Install Oracle Instantclient
37-
ADD root/tmp/setup/oci8-extension.sh /tmp/setup/oci8-extension.sh
38-
RUN /tmp/setup/oci8-extension.sh
39-
ENV LD_LIBRARY_PATH /usr/local/instantclient
40-
4136
# Install Microsoft sqlsrv.
4237
ADD root/tmp/setup/sqlsrv-extension.sh /tmp/setup/sqlsrv-extension.sh
4338
RUN /tmp/setup/sqlsrv-extension.sh
@@ -50,6 +45,7 @@ RUN mkdir /var/www/moodledata && chown www-data /var/www/moodledata && \
5045
mkdir /var/www/.nvm && chown www-data /var/www/.nvm
5146

5247
ADD root/usr /usr
48+
ADD root/etc /etc
5349

5450
# Fix the original permissions of /tmp, the PHP default upload tmp dir.
5551
RUN chmod 777 /tmp && chmod +t /tmp
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Location "/">
2+
FallbackResource /r.php
3+
</Location>

0 commit comments

Comments
 (0)