felek1 0 Zgłoś post Napisano Październik 17, 2014 (edytowany) Hej Mam pewien problem z konfoguracją kulku strona jednym nginx tak zeby przekierowanie bylo: domena1.pl -> usr/share/nginx/www/domena1.pl domena2.pl -> usr/share/nginx/www/domena2.pl domena3.pl -> usr/share/nginx/www/domena3.pl domena4.pl -> usr/share/nginx/www/domena4.pl Mój plik /etc/nginx/sites-enabled/domena1.pl server { listen 80; ## listen for ipv4; this line is default and implied listen [::]:80 default_server ipv6only=on; ## listen for ipv6 root /usr/share/nginx/www/domena1.pl; index index.html index.htm; # Make site accessible from http://localhost/ server_name domena1.pl www.domena1.pl; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ /index.html; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules } location /doc/ { alias /usr/share/doc/; autoindex on; allow 127.0.0.1; allow ::1; deny all; } } Mój plik /etc/nginx/sites-enabled/domena2.pl server { listen 80; listen [::]:80; root /usr/share/nginx/www/domena2.pl; index index.html index.htm; # Make site accessible from http://localhost/ server_name domena2.pl www.domena2.pl; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ /index.html; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules } location /doc/ { alias /usr/share/doc/; autoindex on; allow 127.0.0.1; allow ::1; deny all; } } Oczywiście po wszystkim restart itp. Czy coś robię źle???? Edytowano Październik 17, 2014 przez felek1 (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
spindritf 240 Zgłoś post Napisano Październik 17, 2014 Ale jaki problem? Podejrzewam, że location / {}; gryzie się z root /usr/share/...;. Wywal jedno z nich. Udostępnij ten post Link to postu Udostępnij na innych stronach