jambos 1 Zgłoś post Napisano Styczeń 16, 2015 http://www.piotrdyduch.pl/debian-ubuntu-instalacja-nginx/ robilem wedlug tego poradnika ale phpmyadmin nie dziala. ladujesie pusta strona Udostępnij ten post Link to postu Udostępnij na innych stronach
RafoX 233 Zgłoś post Napisano Styczeń 16, 2015 Podaj adres Udostępnij ten post Link to postu Udostępnij na innych stronach
PrecelusMaximus 53 Zgłoś post Napisano Styczeń 16, 2015 Chłopie ale temat zrobiłeś. Podaj jakieś szczegóły. To tak jakby złapał gumę na pustyni i czekał aż ktoś Ci koło wymieni... Podaj zawartość /etc/nginx/sites-enabled/default oraz info gdzie zainstalowałem phpmyadmin. Udostępnij ten post Link to postu Udostępnij na innych stronach
jambos 1 Zgłoś post Napisano Styczeń 16, 2015 (edytowany) Podaj adres 92.222.40.37 zainstalowalem od nowa po zainstalowaniu php i wrzuceniu pliku index.php z zawartoscia <?php phpinfo(); ?> Na stronie jest 502 bad gateway # You may add here your # server { # ... # } # statements for each of your virtual hosts to this file ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx configuration files in order to fully unleash the power of Nginx. # http://wiki.nginx.org/Pitfalls # http://wiki.nginx.org/QuickStart # http://wiki.nginx.org/Configuration # # Generally, you will want to move this file somewhere, and start with a clean # file but keep this around for reference. Or just disable in sites-enabled. # # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples. ## server { listen 80; server_name www.fast-app.pl; access_log /var/log/nginx/www.fast-app.pl.access.log; ## Lokacja strony: location / { root /var/www/www.fast-app.pl; index index.php; } ## „Inne” traktowanie obrazkow i plikow statycznych location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ { access_log off; expires 30d; root /var/www; } ## Parsowanie wszystkich plikow .php w katalogu strony: /var/www/www.fast-app.pl location ~ .php$ { fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_pass backend; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/www.fast-app.pl$fastcgi_script_name; include fastcgi_params; fastcgi_intercept_errors on; fastcgi_ignore_client_abort off; fastcgi_connect_timeout 60; fastcgi_send_timeout 180; fastcgi_read_timeout 180; fastcgi_buffer_size 128k; fastcgi_buffers 4 256k; fastcgi_busy_buffers_size 256k; fastcgi_temp_file_write_size 256k; } ## Blokowanie widzenia plików .htaccess & .htpassword location ~ /\.ht { deny all; } } ## Ustawienie portu, na którym będzie się odbywać komunikacja z PHP upstream backend { server 127.0.0.1:9000; } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # root html; # index index.html index.htm; # # location / { # try_files $uri $uri/ =404; # } #} # HTTPS server # #server { # listen 443; # server_name localhost; # # root html; # index index.html index.htm; # # ssl on; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # # ssl_session_timeout 5m; # # ssl_protocols SSLv3 TLSv1; # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP; # ssl_prefer_server_ciphers on; # # location / { # try_files $uri $uri/ =404; # } #} oto zawartosc pliku default Edytowano Styczeń 16, 2015 przez jambos (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
Gość dmho Zgłoś post Napisano Styczeń 17, 2015 A masz php-fpma na tym porcie? Udostępnij ten post Link to postu Udostępnij na innych stronach