Wordpress on docker compose and nginx and subpath keep logging out
I am trying to setup a wordpress on using docker-compose and nginx on a /blog path. I have managed to do the setup and when I connect on http://localhost/blog/wp-login.php I get redirected to http://localhost/blog//wp-admin/. Now wherever I click on the page, I get redirected back to the login page. I've tried different combinaison in nginx.conf but to no avail.
My docker-compose.yml
version: '2'
services:
db_wordpress:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db_wordpress
image: wordpress:latest
volumes:
- ./wordpress:/var/www/html
restart: always
expose:
- 80
environment:
WORDPRESS_DB_HOST: db_wordpress:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DEBUG: 1
WORDPRESS_CONFIG_EXTRA: |
define('WP_HOME','http://localhost/blog');
define('WP_SITEURL','http://localhost/blog');
$$_SERVER['REQUEST_URI'] = '/blog' . $$_SERVER['REQUEST_URI'];
nginx:
image: nginx
restart: always
ports:
- "80:80"
- "443:443"
links:
- wordpress
volumes:
- ./logs/nginx:/var/log/nginx
- ./nginx.local.conf:/etc/nginx/nginx.conf
volumes:
db_data:
And my nginx.conf
events {
worker_connections 1024;
}
http {
upstream wordpress {
server wordpress:80;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 512;
server {
listen 80;
server_name _;
location /blog {
proxy_pass http://wordpress/;
proxy_buffering off;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}
wordpress docker nginx docker-compose
add a comment |
I am trying to setup a wordpress on using docker-compose and nginx on a /blog path. I have managed to do the setup and when I connect on http://localhost/blog/wp-login.php I get redirected to http://localhost/blog//wp-admin/. Now wherever I click on the page, I get redirected back to the login page. I've tried different combinaison in nginx.conf but to no avail.
My docker-compose.yml
version: '2'
services:
db_wordpress:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db_wordpress
image: wordpress:latest
volumes:
- ./wordpress:/var/www/html
restart: always
expose:
- 80
environment:
WORDPRESS_DB_HOST: db_wordpress:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DEBUG: 1
WORDPRESS_CONFIG_EXTRA: |
define('WP_HOME','http://localhost/blog');
define('WP_SITEURL','http://localhost/blog');
$$_SERVER['REQUEST_URI'] = '/blog' . $$_SERVER['REQUEST_URI'];
nginx:
image: nginx
restart: always
ports:
- "80:80"
- "443:443"
links:
- wordpress
volumes:
- ./logs/nginx:/var/log/nginx
- ./nginx.local.conf:/etc/nginx/nginx.conf
volumes:
db_data:
And my nginx.conf
events {
worker_connections 1024;
}
http {
upstream wordpress {
server wordpress:80;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 512;
server {
listen 80;
server_name _;
location /blog {
proxy_pass http://wordpress/;
proxy_buffering off;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}
wordpress docker nginx docker-compose
1
Try using:location /blog/{ ... }`
– Richard Smith
Nov 10 at 17:27
add a comment |
I am trying to setup a wordpress on using docker-compose and nginx on a /blog path. I have managed to do the setup and when I connect on http://localhost/blog/wp-login.php I get redirected to http://localhost/blog//wp-admin/. Now wherever I click on the page, I get redirected back to the login page. I've tried different combinaison in nginx.conf but to no avail.
My docker-compose.yml
version: '2'
services:
db_wordpress:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db_wordpress
image: wordpress:latest
volumes:
- ./wordpress:/var/www/html
restart: always
expose:
- 80
environment:
WORDPRESS_DB_HOST: db_wordpress:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DEBUG: 1
WORDPRESS_CONFIG_EXTRA: |
define('WP_HOME','http://localhost/blog');
define('WP_SITEURL','http://localhost/blog');
$$_SERVER['REQUEST_URI'] = '/blog' . $$_SERVER['REQUEST_URI'];
nginx:
image: nginx
restart: always
ports:
- "80:80"
- "443:443"
links:
- wordpress
volumes:
- ./logs/nginx:/var/log/nginx
- ./nginx.local.conf:/etc/nginx/nginx.conf
volumes:
db_data:
And my nginx.conf
events {
worker_connections 1024;
}
http {
upstream wordpress {
server wordpress:80;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 512;
server {
listen 80;
server_name _;
location /blog {
proxy_pass http://wordpress/;
proxy_buffering off;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}
wordpress docker nginx docker-compose
I am trying to setup a wordpress on using docker-compose and nginx on a /blog path. I have managed to do the setup and when I connect on http://localhost/blog/wp-login.php I get redirected to http://localhost/blog//wp-admin/. Now wherever I click on the page, I get redirected back to the login page. I've tried different combinaison in nginx.conf but to no avail.
My docker-compose.yml
version: '2'
services:
db_wordpress:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db_wordpress
image: wordpress:latest
volumes:
- ./wordpress:/var/www/html
restart: always
expose:
- 80
environment:
WORDPRESS_DB_HOST: db_wordpress:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DEBUG: 1
WORDPRESS_CONFIG_EXTRA: |
define('WP_HOME','http://localhost/blog');
define('WP_SITEURL','http://localhost/blog');
$$_SERVER['REQUEST_URI'] = '/blog' . $$_SERVER['REQUEST_URI'];
nginx:
image: nginx
restart: always
ports:
- "80:80"
- "443:443"
links:
- wordpress
volumes:
- ./logs/nginx:/var/log/nginx
- ./nginx.local.conf:/etc/nginx/nginx.conf
volumes:
db_data:
And my nginx.conf
events {
worker_connections 1024;
}
http {
upstream wordpress {
server wordpress:80;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 512;
server {
listen 80;
server_name _;
location /blog {
proxy_pass http://wordpress/;
proxy_buffering off;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}
wordpress docker nginx docker-compose
wordpress docker nginx docker-compose
asked Nov 10 at 17:10
Guillaume
1,02022040
1,02022040
1
Try using:location /blog/{ ... }`
– Richard Smith
Nov 10 at 17:27
add a comment |
1
Try using:location /blog/{ ... }`
– Richard Smith
Nov 10 at 17:27
1
1
Try using:
location /blog/ { ... }`– Richard Smith
Nov 10 at 17:27
Try using:
location /blog/ { ... }`– Richard Smith
Nov 10 at 17:27
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53241384%2fwordpress-on-docker-compose-and-nginx-and-subpath-keep-logging-out%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53241384%2fwordpress-on-docker-compose-and-nginx-and-subpath-keep-logging-out%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Try using:
location /blog/{ ... }`– Richard Smith
Nov 10 at 17:27