Skip to content

Commit

Permalink
updates on handling long uri's and added noecho env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nikirago committed Nov 11, 2021
1 parent 5cc7e81 commit ee5305f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -4,8 +4,8 @@ MAINTAINER YesInteractive- http://yes-interactive.com
# Install modules and updates
RUN apk update \
&& apk --no-cache add \
openssl=="1.1.1k-r0" \
apache2=="2.4.48-r0" \
openssl \
apache2 \
apache2-ssl \
apache2-http2 \
unzip \
Expand Down
2 changes: 1 addition & 1 deletion config/fsl_config.php
Expand Up @@ -9,7 +9,7 @@ function configure()
option('base_uri', "/"); //set if app is not in web root directory but in a subdirectory...
option('session', 'fsl'); // enable with a specific session name
option('behind_proxy', FALSE); //enabled if behind gateway or balancer like Kong
option('release', '20210706'); //enabled if behind gateway or balancer like Kong
option('release', '20211111'); //enabled if behind gateway or balancer like Kong

//##############################################
//encryption configuration
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -64,7 +64,7 @@ Access [http://dadjokes.online](http://dadjokes.online) to see the service in ac
}
```

### Deployment Examples ###
### DISABLING THE ECHO FEATURE ###

To disable the echoing of in the incomfing response, simply add the docker environment variable `DADJOKES_NOECHO=TRUE` to your configuration or simply use the `\noecho` endpoint in
the first level of your request calls. For example:
Expand Down

0 comments on commit ee5305f

Please sign in to comment.