Welcome! Log In Create A New Profile

Advanced

nginx (anomalies with pictures)

August 29, 2009 05:01AM
Hello!

Look please the configuration:
1. When you come to "http://server1.com/phpmyadmin" - the image is displayed
2. But after entering the login and password "http://server1.com/phpmyadmin" - images are not displayed!, Why?

>>> nginx/0.7.61 <<<<with the other versions have not tried, but probably is not the version.
[code]
user www;
worker_processes 3;

pid / var / run / nginx.pid;

events (
worker_connections 1024;
)
http (
include mime.types;
default_type application / octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
server_names_hash_max_size 2048;
server_names_hash_bucket_size 128;

# server1.com
server (
listen 80;
server_name server1.com;

charset utf8;
client_max_body_size 25m;

location / (
root / usr/local/www/web1;
index index.html;
)

location / phpmyadmin (
alias / usr/local/www/web2 /;
index index.html index.php;
)

location ~ * \. php $ (
rewrite ^ / phpmyadmin (/.+)$ $ 1 break;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME / usr/local/www/web2 $ fastcgi_script_name;
include fastcgi_params;
)
)
)
[/ code]
Subject Author Posted

nginx (anomalies with pictures)

gloomen August 29, 2009 05:01AM

Re: nginx (anomalies with pictures)

Igor Sysoev August 29, 2009 07:53AM

Re: nginx (anomalies with pictures)

gloomen August 29, 2009 08:52AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 246
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready