Vesta Control Panel - Forum

Community Forum

Skip to content

Advanced search
  • Quick links
    • Main site
    • Github repo
    • Google Search
  • FAQ
  • Login
  • Register
  • Board index Main Section Web Server
  • Search

Translated: 403 Forbidden nginx in imagevue gallery

Questions regarding the Web Server
Apache + Nginx, Nginx + PHP5-FPM
Post Reply
  • Print view
Advanced search
13 posts
  • 1
  • 2
  • Next
Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Thu Apr 16, 2015 9:08 pm

Hello.

Please help!

Started to receive the error:
403 Forbidden
___________________
nginx

if I try to log into the gallery imagevue:
http://10meters.org/iv-admin
L: admin
P: admin
After 403 Forbidden close the browser, open it again and you may enter login/password again.

File rights are set correctly.
CentOS release 6.4 (Final) 64-bit.

Old user started to receive such a bug during last 1-2 months.
Everything was fine before that. Nothing was changed in server config, gallery config or user rights.

Created new user and Installed the gallery.
Get the same problem with 403 Forbidden.

The gallery itself is ok and working fine on the same server with another user!

Have no idea what to do and check next.
Deleted logs to get new logs with this error.
http://vestacp.com/docs/#config-log-loc ... hel-centos

/var/log/httpd/domains/$domain.log
/var/log/httpd/domains/$domain.error.log

but no new logs any more.
Old logs had nothing interesting.

Default Template: default
core package
Version: 0.9.7
Release: 22
Architecture: x86_64

Please help.

===========

Добрый день.
Стала появляться ошибка

403 Forbidden
___________________
nginx

при попытке залогиниться в галерею imagevue:
http://10meters.org/iv-admin
L: admin
P: admin
После 403 Forbidden браузер закрыть, открыть и снова страница заработает для ввода логина/пароля.

Права на файлы выставлены верно.
CentOS release 6.4 (Final) 64-bit.

У старого пользователя, у которого все работало, стала появляться
такая ошибка в последний месяц - два. Не знаю, когда именно.
Ничего в конфигаруции галереи и пользователя не менялось.

Галерея установлена для нового пользователя. Результат тот же.
Галерея рабочая.

Куда копать не ясно.
Очистил логи, чтобы видеть конкретно эту ошибку:
http://vestacp.com/docs/#config-log-loc ... hel-centos

/var/log/httpd/domains/$domain.log
/var/log/httpd/domains/$domain.error.log

но новые теперь не создаются.
В старых ничего информативного не видел.

Default Template: default
core package
Version: 0.9.7
Release: 22
Architecture: x86_64

Пожалуйста, подскажите куда копать.
Top

bestony
Posts: 17
Joined: Sat Mar 07, 2015 5:22 pm
Contact:
Contact bestony
Website

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by bestony » Sun Apr 19, 2015 12:21 am

Hello ,I only find imagevue.x2.8.10.2
and deploy it .
There is my Code
File

Code: Select all

[root@apexnetwork public_html]# ll
total 8492
-rw-r--r--  1 www root     102 Aug 10  2013 Adobe??+??-??.url
drwxr-xr-x 10 www root    4096 Apr 19 08:13 content
-rw-r--r--  1 www root    1638 Jun 15  2013 favicon.png
-rw-r--r--  1 www root    3591 May 10  2012 -?+?.htm
-rw-r--r--  1 www root    1912 Jun 15  2013 imagevue.php
-rw-r--r--  1 www root 8620327 Aug 27  2013 imagevue-v2.8.10.2.zip
-rw-r--r--  1 www root     641 Jun 15  2013 index.php
drwxr-xr-x  6 www root    4096 Jun 15  2013 iv-admin
drwxr-xr-x  2 www root    4096 Apr 19 08:13 iv-config
drwxr-xr-x 12 www root    4096 Jun 15  2013 iv-includes
-rw-r--r--  1 www root    4493 Oct 20  2012 phpinfo.zip
drwxr-xr-x  2 www root    4096 Jun 15  2013 README
-rw-r--r--  1 www root     148 Jun 26  2013 +?+??-??.url
-rw-r--r--  1 www root     112 Jun 14  2013 ?--???+?.url
-rw-r--r--  1 www root     100 Aug  7  2013 ??+-?+͢.url
drwxr-xr-x  2 www root    4096 Apr 19 08:12 [XinBeta.Com]imagevue.x2.8.10.2
-rw-r--r--  1 www root      97 Aug  7  2013 +?+?-Ϧ-.url
-rw-r--r--  1 www root    1450 Jul 12  2013 ??Φæ??+?.txt
Nginx

Code: Select all

server {
    listen      xxx.xxx.xxx.xxx:80;
    server_name wmclass.com www.example.com;
    error_log  /var/log/httpd/domains/example.com.error.log error;

    location / {
        proxy_pass      http://xxx.xxx.xxx.xxx:8080;
        location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|tif|tiff|css|js|htm|html|ttf|otf|webp|woff|txt|csv|rtf|doc|docx|xls|xlsx|ppt|pptx|odf|odp|ods|odt|pdf|psd|ai|eot|eps|ps|zip|tar|tgz|gz|rar|bz2|7z|aac|m4a|mp3|mp4|ogg|wav|wma|3gp|avi|flv|m4v|mkv|mov|mp4|mpeg|mpg|wmv|exe|iso|dmg|swf)$ {
            root           /home/www/web/example.com/public_html;
            access_log     /var/log/httpd/domains/example.com.log combined;
            access_log     /var/log/httpd/domains/example.com.bytes bytes;
            expires        max;
            try_files      $uri @fallback;
        }
    }

    location /error/ {
        alias   /home/www/web/example.com/document_errors/;
    }

    location @fallback {
        proxy_pass      http://xxx.xxx.xxx.xxx:8080;
    }

    location ~ /\.ht    {return 404;}
    location ~ /\.svn/  {return 404;}
    location ~ /\.git/  {return 404;}
    location ~ /\.hg/   {return 404;}
    location ~ /\.bzr/  {return 404;}

    include /home/www/conf/web/nginx.example.com.conf*;
}
Apache

Code: Select all

<VirtualHost xxx.xxx.xxx.xxx:8080>

    ServerName example.com
    ServerAlias www.example.com
    ServerAdmin [email protected]
    DocumentRoot /home/www/web/example.com/public_html
    ScriptAlias /cgi-bin/ /home/www/web/example.com/cgi-bin/
    Alias /vstats/ /home/www/web/example.com/stats/
    Alias /error/ /home/www/web/example.com/document_errors/
    #SuexecUserGroup www www
    CustomLog /var/log/httpd/domains/example.com.bytes bytes
    CustomLog /var/log/httpd/domains/example.com.log combined
    ErrorLog /var/log/httpd/domains/example.com.error.log
    <Directory /home/www/web/example.com/public_html>
        AllowOverride All
        Options +Includes -Indexes +ExecCGI
    </Directory>
    <Directory /home/www/web/example.com/stats>
        AllowOverride All
    </Directory>

    <IfModule mod_ruid2.c>
        RMode config
        RUidGid www www
        RGroups apache
    </IfModule>
    <IfModule itk.c>
        AssignUserID www www
    </IfModule>

    Include /home/www/conf/web/httpd.example.com.conf*

</VirtualHost>
Top

Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Sat Apr 25, 2015 12:20 pm

All in all I found the way to get error log: needed to restart apache and anginex services.
So here it is.

New user created.
Files uploaded and unpacked.
First start:

http://10meters.org/iv-admin/

Immediately after this:
/var/log/httpd/domains/10meters.org.error.log

Code: Select all

2015/04/25 14:59:50 [crit] 24226#0: *3266 openat() "/home/tata/web/10meters.org/public_html/content/start/ladyleg.jpg" failed (13: Permission denied), client: 95.133.143.167, server: 10meters.org, request: "GET /content/start/ladyleg.jpg HTTP/1.1", host: "10meters.org", referrer: "http://10meters.org/"

2015/04/25 14:59:51 [error] 24226#0: *3266 upstream sent too big header while reading response header from upstream, client: 95.133.143.167, server: 10meters.org, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "10meters.org", referrer: "http://10meters.org/"

2015/04/25 14:59:51 [error] 24226#0: *3266 openat() "/home/tata/web/10meters.org/document_errors/50x.html" failed (13: Permission denied), client: 95.133.143.167, server: 10meters.org, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "10meters.org", referrer: "http://10meters.org/"
A bit later (second try to open http://10meters.org/iv-admin/):

Code: Select all

2015/04/25 15:13:06 [error] 25782#0: *333 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: 10meters.org, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "10meters.org"

2015/04/25 15:13:06 [error] 25782#0: *333 openat() "/home/tata/web/10meters.org/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: 10meters.org, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "10meters.org"

2015/04/25 15:13:20 [error] 27016#0: *1 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: 10meters.org, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "10meters.org"

2015/04/25 15:13:20 [error] 27016#0: *1 openat() "/home/tata/web/10meters.org/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: 10meters.org, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "10meters.org"

2015/04/25 15:13:26 [error] 27016#0: *1 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: 10meters.org, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "10meters.org", referrer: "http://10meters.org/"

2015/04/25 15:13:26 [error] 27016#0: *1 openat() "/home/tata/web/10meters.org/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: 10meters.org, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "10meters.org", referrer: "http://10meters.org/"

First error:

Code: Select all

2015/04/25 14:59:50 [crit] 24226#0: *3266 openat()
"/home/tata/web/10meters.org/public_html/content/start/ladyleg.jpg"
failed (13: Permission denied), client: 95.133.143.167,
server: 10meters.org, request: "GET /content/start/ladyleg.jpg HTTP/1.1",
host: "10meters.org", referrer: "http://10meters.org/"
But you can have access to

Code: Select all

/home/tata/web/10meters.org/public_html/content/start/ladyleg.jpg
http://10meters.org/content/start/ladyleg.jpg - no problems at all.

Second error:

Code: Select all

2015/04/25 14:59:51 [error] 24226#0: *3266 upstream sent too big header while reading response header from upstream...
Have no idea. Never had this problem before.

All permissions to all files are default. Nothing was changed after user creation and file upload (unzipping).

Please help if possible.
Top

Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Sat Apr 25, 2015 12:46 pm

# ps aux | grep nginx

Code: Select all

root      1795  0.0  0.0  54776   204 ?        Ss   Apr15   0:00 nginx: master process /usr/local/vesta/nginx/sbin/vesta-nginx
admin     1796  0.0  0.0  55416  2420 ?        S    Apr15   0:00 nginx: worker process
root     27075  0.0  0.0  57288  3524 ?        Ss   15:13   0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx    27076  0.0  0.1  58192  5000 ?        S    15:13   0:00 nginx: worker process
nginx    27077  0.0  0.1  58192  4968 ?        S    15:13   0:00 nginx: worker process
root     29957  0.0  0.0 103240   872 pts/11   S+   15:45   0:00 grep nginx
httpd.conf

Code: Select all

<VirtualHost 80.69.77.192:8080>

    ServerName 10meters.org
    ServerAlias www.10meters.org
    ServerAdmin [email protected]
    DocumentRoot /home/tata/web/10meters.org/public_html
    ScriptAlias /cgi-bin/ /home/tata/web/10meters.org/cgi-bin/
    Alias /vstats/ /home/tata/web/10meters.org/stats/
    Alias /error/ /home/tata/web/10meters.org/document_errors/
    * * * * * * SuexecUserGroup tata tata * * * * * *
    CustomLog /var/log/httpd/domains/10meters.org.bytes bytes
    CustomLog /var/log/httpd/domains/10meters.org.log combined
    ErrorLog /var/log/httpd/domains/10meters.org.error.log
    <Directory /home/tata/web/10meters.org/public_html>
        AllowOverride All
        Options +Includes -Indexes +ExecCGI
    </Directory>
    <Directory /home/tata/web/10meters.org/stats>
        AllowOverride All
    </Directory>

    <IfModule mod_ruid2.c>
        RMode config
        RUidGid tata tata
        RGroups apache
    </IfModule>
    <IfModule itk.c>
        AssignUserID tata tata
    </IfModule>

    Include /home/tata/conf/web/httpd.10meters.org.conf*

</VirtualHost>
Marked with stars * * * * * * SuexecUserGroup tata tata * * * * * * as it is different then in your example:
#SuexecUserGroup www www
I tried to comment this string but nothing changed.


nginx.conf

Code: Select all

server {
    listen      80.69.77.192:80;
    server_name 10meters.org www.10meters.org;
    error_log  /var/log/httpd/domains/10meters.org.error.log error;

    location / {
        proxy_pass      http://80.69.77.192:8080;
        location ~* ^.+\.(jpg|jpeg|gif|png|ico|svg|css|zip|tgz|gz|rar|bz2|exe|pdf|doc|xls|ppt|txt|odt|ods|odp|odf|tar|bmp|rtf|js|mp3|avi|mpeg|flv|html|htm)$ {
            root           /home/tata/web/10meters.org/public_html;
            access_log     /var/log/httpd/domains/10meters.org.log combined;
            access_log     /var/log/httpd/domains/10meters.org.bytes bytes;
            expires        max;
            try_files      $uri @fallback;
        }
    }

    location /error/ {
        alias   /home/tata/web/10meters.org/document_errors/;
    }

    location @fallback {
        proxy_pass      http://80.69.77.192:8080;
    }

    location ~ /\.ht    {return 404;}
    location ~ /\.svn/  {return 404;}
    location ~ /\.git/  {return 404;}
    location ~ /\.hg/   {return 404;}
    location ~ /\.bzr/  {return 404;}

    include /home/tata/conf/nginx.10meters.org.conf*;
}
Top

Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Sat Apr 25, 2015 1:08 pm

To nginx.conf added:

Code: Select all

    proxy_buffer_size         128k;
    proxy_buffers           4 256k;
    proxy_busy_buffers_size   256k;    
and it helped! Don't know why and what the meaning is.
And why the problem appeared?
And why are these settings not set up by default?
Top

bestony
Posts: 17
Joined: Sat Mar 07, 2015 5:22 pm
Contact:
Contact bestony
Website

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by bestony » Sat Apr 25, 2015 1:28 pm

Sattva wrote:To nginx.conf added:

Code: Select all

    proxy_buffer_size         128k;
    proxy_buffers           4 256k;
    proxy_busy_buffers_size   256k;    
and it helped! Don't know why and what the meaning is.
And why the problem appeared?
And why are these settings not set up by default?
The proxy_buffer_size is set Nginx Cache Area Quota
The proxy_buffers Is Set Nginx MAKE the Responve Information From Backend[PHP5.X] to Nginx Cache area
the proxy_busy_buffers_size is burst Cache Of Nginx.

I think maybe the imagevue 's responve header is more than 4K[Nginx Default Value]
Top

Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Sat Apr 25, 2015 1:35 pm

With the first user buffers settings helped.

In case of a second (old) user it didn't help at all.

Code: Select all

2015/04/25 16:25:06 [error] 32119#0: *340 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/index.php?c=user HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/index.php?c=user", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/iv-admin/"

2015/04/25 16:25:06 [error] 32119#0: *340 openat() "/home/angelina/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/index.php?c=user HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/index.php?c=user", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/iv-admin/"

2015/04/25 16:25:17 [error] 32119#0: *365 upstream sent too big header while reading response header from upstream, client: 66.249.65.76, server: ebru-art.com.ua, request: "GET /?/ HTTP/1.1", upstream: "http://80.69.77.192:8080/?/", host: "ebru-art.com.ua"

2015/04/25 16:25:17 [error] 32119#0: *365 openat() "/home/angelina/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 66.249.65.76, server: ebru-art.com.ua, request: "GET /?/ HTTP/1.1", upstream: "http://80.69.77.192:8080/?/", host: "ebru-art.com.ua"

2015/04/25 16:26:45 [error] 866#0: *3 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/index.php?c=user HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/index.php?c=user", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/iv-admin/"

2015/04/25 16:26:45 [error] 866#0: *3 openat() "/home/angelina/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/index.php?c=user HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/index.php?c=user", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/iv-admin/"

2015/04/25 16:26:49 [error] 866#0: *3 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 16:26:49 [error] 866#0: *3 openat() "/home/angelina/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 16:28:27 [error] 866#0: *57 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 16:28:27 [error] 866#0: *57 openat() "/home/angelina/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 16:29:09 [crit] 866#0: *57 openat() "/home/angelina/web/ebru-art.com.ua/public_html/iv-includes/assets/css/imagevue.adminbar.css" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-includes/assets/css/imagevue.adminbar.css HTTP/1.1", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 16:29:10 [crit] 866#0: *71 openat() "/home/angelina/web/ebru-art.com.ua/public_html/content/pictures1/tn_cheetah.jpg" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /content/pictures1/tn_cheetah.jpg?1373449500 HTTP/1.1", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 16:29:10 [crit] 866#0: *71 openat() "/home/angelina/web/ebru-art.com.ua/public_html/iv-includes/themes/carbonizer/imagevue.css" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-includes/themes/carbonizer/imagevue.css HTTP/1.1", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 16:29:10 [crit] 866#0: *71 openat() "/home/angelina/web/ebru-art.com.ua/public_html/iv-includes/themes/carbonizer/tactile.png" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-includes/themes/carbonizer/tactile.png HTTP/1.1", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 16:29:11 [crit] 866#0: *57 openat() "/home/angelina/web/ebru-art.com.ua/public_html/content/start/ladyleg.jpg" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /content/start/ladyleg.jpg HTTP/1.1", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 16:29:15 [error] 866#0: *57 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 16:29:15 [error] 866#0: *57 openat() "/home/angelina/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"
Top

Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Sat Apr 25, 2015 1:46 pm

The proxy_buffer_size is set Nginx Cache Area Quota
The proxy_buffers Is Set Nginx MAKE the Responve Information From Backend[PHP5.X] to Nginx Cache area
the proxy_busy_buffers_size is burst Cache Of Nginx.

I think maybe the imagevue 's responve header is more than 4K[Nginx Default Value]
Thank you. I will delete and create user now again and we will see if the problem will continue.
Top

Sattva
Posts: 71
Joined: Thu Apr 25, 2013 9:34 am

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by Sattva » Sat Apr 25, 2015 2:19 pm

Deleted the second user with 2 domains.
Created the user with another name and domains (the same).
Uploaded clean fresh imagevue gallery.

Added buffers to nginx config.

Result the same:
http://ebru-art.com.ua/iv-admin/

Code: Select all

2015/04/25 17:15:45 [crit] 8336#0: *1 openat() "/home/ange/web/ebru-art.com.ua/public_html/ebru/art/risovanienavode.JPG" failed (13: Permission denied), client: 188.165.15.95, server: ebru-art.com.ua, request: "GET /ebru/art/risovanienavode.JPG HTTP/1.1", host: "ebru-art.com.ua"

2015/04/25 17:15:56 [error] 8336#0: *11 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 17:15:56 [error] 8336#0: *11 openat() "/home/ange/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 17:15:58 [crit] 8336#0: *13 openat() "/home/ange/web/ebru-art.com.ua/public_html/favicon.png" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /favicon.png HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *13 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/jquery.min.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/jquery.min.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *17 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/css/imagevue.adminbar.css" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/css/imagevue.adminbar.css HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *18 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/css/imagevue.flash.css" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/css/imagevue.flash.css HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *21 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/colorbox/colorbox.css" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/colorbox/colorbox.css HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *23 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfmacmousewheel.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfmacmousewheel.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *25 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfaddress.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfaddress.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *17 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/jquery.c.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/jquery.c.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *18 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/functions.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/functions.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *21 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/colorbox/jquery.colorbox-min.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/colorbox/jquery.colorbox-min.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *23 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfobject.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfobject.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:59 [crit] 8336#0: *25 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfobject.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfobject.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:59 [crit] 8336#0: *23 openat() "/home/ange/web/ebru-art.com.ua/public_html/content/pictures1/tn_cheetah.jpg" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /content/pictures1/tn_cheetah.jpg?1373449500 HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:16:31 [error] 8336#0: *11 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 17:16:31 [error] 8336#0: *11 openat() "/home/ange/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"
This is really strange: helped with one user, didn't help with another.
Top

bestony
Posts: 17
Joined: Sat Mar 07, 2015 5:22 pm
Contact:
Contact bestony
Website

Re: Translated: 403 Forbidden nginx in imagevue gallery
  • Quote

Post by bestony » Sat Apr 25, 2015 2:29 pm

Sattva wrote:Deleted the second user with 2 domains.
Created the user with another name and domains (the same).
Uploaded clean fresh imagevue gallery.

Added buffers to nginx config.

Result the same:
http://ebru-art.com.ua/iv-admin/

Code: Select all

2015/04/25 17:15:45 [crit] 8336#0: *1 openat() "/home/ange/web/ebru-art.com.ua/public_html/ebru/art/risovanienavode.JPG" failed (13: Permission denied), client: 188.165.15.95, server: ebru-art.com.ua, request: "GET /ebru/art/risovanienavode.JPG HTTP/1.1", host: "ebru-art.com.ua"

2015/04/25 17:15:56 [error] 8336#0: *11 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 17:15:56 [error] 8336#0: *11 openat() "/home/ange/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/", host: "ebru-art.com.ua"

2015/04/25 17:15:58 [crit] 8336#0: *13 openat() "/home/ange/web/ebru-art.com.ua/public_html/favicon.png" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /favicon.png HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *13 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/jquery.min.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/jquery.min.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *17 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/css/imagevue.adminbar.css" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/css/imagevue.adminbar.css HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *18 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/css/imagevue.flash.css" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/css/imagevue.flash.css HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *21 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/colorbox/colorbox.css" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/colorbox/colorbox.css HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *23 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfmacmousewheel.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfmacmousewheel.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *25 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfaddress.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfaddress.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *17 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/jquery.c.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/jquery.c.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *18 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/functions.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/functions.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *21 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/colorbox/jquery.colorbox-min.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/colorbox/jquery.colorbox-min.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:58 [crit] 8336#0: *23 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfobject.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfobject.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:59 [crit] 8336#0: *25 openat() "/home/ange/web/ebru-art.com.ua/public_html/iv-includes/assets/js/swfobject.js" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /iv-includes/assets/js/swfobject.js HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:15:59 [crit] 8336#0: *23 openat() "/home/ange/web/ebru-art.com.ua/public_html/content/pictures1/tn_cheetah.jpg" failed (13: Permission denied), client: 62.64.108.147, server: ebru-art.com.ua, request: "GET /content/pictures1/tn_cheetah.jpg?1373449500 HTTP/1.1", host: "www.ebru-art.com.ua", referrer: "http://www.ebru-art.com.ua/"

2015/04/25 17:16:31 [error] 8336#0: *11 upstream sent too big header while reading response header from upstream, client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"

2015/04/25 17:16:31 [error] 8336#0: *11 openat() "/home/ange/web/ebru-art.com.ua/document_errors/50x.html" failed (13: Permission denied), client: 95.133.136.146, server: ebru-art.com.ua, request: "GET /iv-admin/?path=start/ HTTP/1.1", upstream: "http://80.69.77.192:8080/iv-admin/?path=start/", host: "ebru-art.com.ua", referrer: "http://ebru-art.com.ua/"
This is really strange: helped with one user, didn't help with another.
Will ,If You add it To Nginx.conf,It should USEFUL FOR ANY user,The File maybe at /etc/nginx/conf.d
Why Not add it to Templates
Top


Post Reply
  • Print view

13 posts
  • 1
  • 2
  • Next

Return to “Web Server”



  • Board index
  • All times are UTC
  • Delete all board cookies
  • The team
Powered by phpBB® Forum Software © phpBB Limited
*Original Author: Brad Veryard
*Updated to 3.2 by MannixMD
 

 

Login  •  Register

I forgot my password