【发布时间】:2021-12-04 00:17:34
【问题描述】:
问题是,我在使用带有 Nginx + Yii2 + Redis 的 Docker 的会话时遇到问题。
我想在 Yii2 高级模板中的银行和前端使用相同的登录。
我刚刚配置好了,不使用Redis时它工作,但是当我使用Redis时,不工作。
我的配置是:
- Yii2 高级版 2.0.43
- Nginx 1.17.8
- Redis 4-alpine
我的文件: docker-compose.yml
version: "3.2"
services:
nginx:
container_name: nginx
image: nginx:1.17.8
ports:
- 805:80 #Yes, i use on port 805, its better for me ;-)
volumes:
- ./vhosts/nginx.conf:/etc/nginx/conf.d/site.conf
- ./:/app
links:
- php
- db
- redis
php:
build: .
container_name: php
volumes:
- ./:/app
environment:
- SESSION_HANDLER=redis
- SESSION_PATH=tcp://redis:${REDIS_PORT}?auth=${REDIS_PASSWORD}
- SESSION_MAX_TIME_LIFE=86400
db:
image: mysql:8
ports:
- '33065:3306' #Its my way, i use on port 33065, depending on each project
volumes:
- /var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=654321
- MYSQL_DATABASE=my-project-5
redis:
image: redis:4-alpine
container_name: redis
command: redis-server --requirepass ${REDIS_PASSWORD}
ports:
- ${REDIS_PORT}:${REDIS_PORT}
Dockerfile
FROM php:7.4-fpm-alpine
RUN apk add --no-cache --virtual .build-deps \
g++ make autoconf yaml-dev
RUN pecl install igbinary-3.1.2
RUN pecl install redis-5.1.1 \
pecl install xdebug-2.9.0
#se for usar o redis
COPY frontend/web/php.ini /usr/local/etc/php/php.ini
RUN docker-php-ext-install intl
RUN docker-php-ext-install pcntl
RUN docker-php-ext-install pdo_mysql
RUN docker-php-ext-install mbstring
RUN docker-php-ext-enable igbinary.so
RUN docker-php-ext-enable redis.so
RUN docker-php-ext-enable xdebug
RUN rm -rf /var/cache/apk/*
RUN apk del --purge .build-deps
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
CMD ["php-fpm"]
/vhosts/nginx.conf
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on; ## listen for ipv6
server_name proj5.local;
set $base_root /app;
root $base_root;
error_log /var/log/nginx/advanced.local.error.log warn;
access_log /var/log/nginx/advanced.local.access.log main;
charset UTF-8;
index index.php index.html;
client_max_body_size 200m;
fastcgi_read_timeout 2500;
location / {
root $base_root/frontend/web;
try_files $uri $uri/ /frontend/web/index.php$is_args$args;
location ~ ^/assets/.+\.php(/|$) {
deny all;
}
}
location /painel {
alias $base_root/backend/web/;
# prevent the directory redirect to the URL with a trailing slash
location = /painel {
# if your location is "/backend", try use "/backend/backend/web/index.php$is_args$args"
# bug ticket: https://trac.nginx.org/nginx/ticket/97
try_files $uri /backend/web/index.php$is_args$args;
}
try_files $uri $uri/ /backend/web/index.php$is_args$args;
location ~ ^/painel/assets/.+\.php(/|$) {
deny all;
}
}
location ~ ^/.+\.php(/|$) {
rewrite (?!^/((frontend|backend)/web|painel))^ /frontend/web$uri break;
rewrite (?!^/backend/web)^/painel(/.+)$ /backend/web$1 break;
fastcgi_pass php:9000; # proxy requests to a TCP socket
#fastcgi_pass unix:/var/run/php-fpm.sock; # proxy requests to a UNIX domain socket (check your www.conf file)
fastcgi_split_path_info ^(.+\.php)(.*)$;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
try_files $fastcgi_script_name =404;
}
location ~ /\. {
deny all;
}
}
前端/web/php.ini
session.save_handler = ${SESSION_HANDLER}
session.save_path = ${SESSION_PATH}
session.gc_maxlifetime = ${SESSION_MAX_TIME_LIFE}
common/config/main.php
'components' => [
'cache' => [
'class' => 'yii\redis\Cache',
],
'redis' => [
'class' => 'yii\redis\Connection',
'hostname' => 'redis',
'port' => env("REDIS_PORT"),
'password' => env("REDIS_PASSWORD"),
'database' => 0,
],
'session' => [
'class' => 'yii\redis\Session',
],
...
PS:为了工作,我必须禁用它并禁用 Redis
前端/config/main.php
...
'components' => [
'user' => [
'identityClass' => 'common\models\Admin',
'enableAutoLogin' => false,
'identityCookie' => [
'name' => 'backend-same-frontend',
'httpOnly' => false,
],
],
'session' => [
'name' => 'advanced-backend-frontend',
'savePath' => sys_get_temp_dir(),
],
'request' => [
'csrfParam' => '_csrf-frontend',
'baseUrl' => '',
'cookieValidationKey' => 'jhkbYUITFRuytkjHBkjhvguytRDuytcdIYUTdfiyOUgoligoiuytguioyFGOU',
],
...
backend/config/main.php
...
'components' => [
'user' => [
'identityClass' => 'common\models\Admin',
'enableAutoLogin' => true,
'identityCookie' => [
'name' => 'backend-same-frontend',
'httpOnly' => false,
],
],
'session' => [
// this is the name of the session cookie used for login on the backend
'name' => 'advanced-backend-frontend',
'savePath' => sys_get_temp_dir(),
],
'request' => [
'cookieValidationKey' => 'kjhIKUYTiyuRTIYUfkjhbVGFKJHGf87654HJGFKHGfkjyhgft',
'csrfParam' => '_csrf-backend',
'baseUrl' => '/painel',
],
...
项目在 URL 上运行:
当我说这就像一个魅力时,但只有当我不使用 Redis 时。
如果我使用 Redis,会话不会在后端和前端持续存在
谁能帮帮我...
【问题讨论】:
标签: php docker nginx redis yii2