Search found 6 matches

by DesCod
Tue Oct 24, 2017 2:32 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16857

Re: Installation problem

To my great regret, WonderCMS did not want to work on the NGINX server, I even tried to put it in the root directory www. I can not install Apace just for this - the rest of my sites work on NGINX.
by DesCod
Thu Oct 19, 2017 10:08 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16857

Re: Installation problem

Without problems, the server is under my complete control, and I always restart it after making changes
by DesCod
Thu Oct 19, 2017 9:11 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16857

Re: Installation problem

I do not understand ....
rewrote:

Code: Select all

	location /wonder/ {
	if (! -e $ request_filename) {
	rewrite ^ / (. +) $ https://bitstyl.ru/wonder/index.php?page=$1 last;
	}
}
https://bitstyl.ru/wonder/loginURL - 404
by DesCod
Thu Oct 19, 2017 5:50 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16857

Re: Installation problem

I added:

Code: Select all

	location /wonder/ {
	if (! -e $ request_filename) {
	rewrite ^ / (. +) $ https://wonder.bitstyl.ru/index.php?page=$1 last;
	}
}
no changes :(
by DesCod
Thu Oct 19, 2017 5:23 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16857

Re: Installation problem

Glad to see you wiz ! Here is my current nginx config: server { listen 80; server_name bitstyl.ru *.bitstyl.ru; location / { root /var/www/bitstyl.ru/$subdomain; index index.php index.html index.htm; } set $subdomain ""; if ($host ~* ^([a-z0-9-\.]+)\.bitstyl.ru$) { set $subdomain $1; } if ...
by DesCod
Thu Oct 19, 2017 12:00 am
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16857

Re: Installation problem

I've edited nginx.conf as you recommend, but I can not configure WonderCMS to work on a subdomain (test.mysite.com). I go to the main page, click the link - login and I send to the mysite.com :(