Skip to content

Commit cd29d70

Browse files
committed
engine - compatible with symfony 4 upgrade
1 parent a2b51f5 commit cd29d70

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

core/engine/appconf.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
DocumentRoot /var/www/html/web
1+
DocumentRoot /var/www/html/public
22
ServerName engine
33
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
44

5-
<Directory "/var/www/html/web">
5+
<Directory "/var/www/html/public">
66
Require all granted
77
Options -MultiViews
88
RewriteEngine On
99
RewriteBase /
1010
RewriteCond %{REQUEST_FILENAME} !-f
11-
RewriteRule ^(.*)$ app.php [QSA,L]
11+
RewriteRule ^(.*)$ index.php [QSA,L]
1212
</Directory>
1313

1414
Header always set X-Content-Type-Options "nosniff"

core/engine/docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
image: ghcr.io/openconext/openconext-basecontainers/${ENGINE_PHP_IMAGE:-php72-apache2-node14-composer2:latest}
88
volumes:
99
- ${ENGINE_CODE_PATH}:/var/www/html
10-
- ./engine/parameters.yml:/var/www/html/app/config/parameters.yml
10+
- ./engine/parameters.yml:/var/www/html/config/packages/parameters.yml
1111
- ./engine/appconf.conf:/etc/apache2/sites-enabled/appconf.conf
1212
environment:
1313
- APP_ENV=${APP_ENV:-dev}

0 commit comments

Comments
 (0)