Skip to content

Commit 3353103

Browse files
committed
Merge branch 'master' of github.com:atsanna/codeigniter4-docker
2 parents c1a8ab5 + bfae62c commit 3353103

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ docker-compose down --volumes
123123
- `COOKIE_PATH` - Typically will be a forward slash [`/`]
124124
- `COOKIE_DOMAIN` - Set to `.your-domain.com` for site-wide cookies [``]
125125
- `COOKIE_SECURE` - Cookie will only be set if a secure HTTPS connection exists [`true`, `false`]
126-
- `COOKIE_HTTP_OLNY` - Cookie will only be accessible via HTTP(S) (no JavaScript) [`true`, `false`]
126+
- `COOKIE_HTTP_ONLY` - Cookie will only be accessible via HTTP(S) (no JavaScript) [`true`, `false`]
127127
- `COOKIE_SAME_SITE` - Configure cookie SameSite setting [`None`, `Lax`, `Strict`, `''`]
128128
- `COOKIE_RAW` - This flag allows setting a "raw" cookie [`true`, `false`]
129129

startScript.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ codeigniter_env_generator() {
489489
echo "cookie.secure = ${cookie_secure}" >> .env
490490
fi
491491

492-
cookie_httponly=${COOKIE_HTTP_OLNY:-}
492+
cookie_httponly=${COOKIE_HTTP_ONLY:-}
493493
if [[ -z "${cookie_httponly}" ]]; then
494494
echo "# cookie.httponly = false" >> .env
495495
else
@@ -802,4 +802,4 @@ chmod 777 /etc/ssmtp /etc/ssmtp/*
802802
#====================================================================#
803803
# A P A C H E R U N #
804804
#====================================================================#
805-
/usr/sbin/apache2ctl -D FOREGROUND
805+
/usr/sbin/apache2ctl -D FOREGROUND

0 commit comments

Comments
 (0)