Skocz do zawartości
felek1

lika stron na jednym nginx

Polecane posty

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 przez felek1 (zobacz historię edycji)

Udostępnij ten post


Link to postu
Udostępnij na innych stronach

Bądź aktywny! Zaloguj się lub utwórz konto

Tylko zarejestrowani użytkownicy mogą komentować zawartość tej strony

Utwórz konto

Zarejestruj nowe konto, to proste!

Zarejestruj nowe konto

Zaloguj się

Posiadasz własne konto? Użyj go!

Zaloguj się


×