Skip to content

Commit 775cfd4

Browse files
Merge pull request #21 from pdsinterop/improve-tests
Improve tests
2 parents 754ed6b + 3299c4e commit 775cfd4

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ ADD . /app
1919
WORKDIR /app
2020
RUN php /install/composer.phar install --no-dev --prefer-dist
2121
COPY site.conf /etc/apache2/sites-enabled/site.conf
22+
RUN chown www-data /app/config
2223
EXPOSE 443

src/Controller/ServerController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct() {
2626

2727
public function getOpenIdEndpoints() {
2828
// FIXME: would be better to base this on the available routes if possible.
29-
$this->baseUrl = "https://localhost/"; // FIXME: generate proper urls
29+
$this->baseUrl = "https://server/"; // FIXME: generate proper urls
3030
return [
3131
'issuer' => $this->baseUrl,
3232
'authorization_endpoint' => $this->baseUrl . "authorize",

0 commit comments

Comments
 (0)