Nginx Web Server configuration with Examples

Поділитися
Вставка
  • Опубліковано 5 лис 2024

КОМЕНТАРІ • 28

  • @Manwithsteelnerves
    @Manwithsteelnerves 3 роки тому +3

    The best tutorial I found so far which covers valuable information!
    It would be great if you can make a video on ssl setup

  • @delbarton314159
    @delbarton314159 4 роки тому +2

    extremely helpful introduction to configuring nginx. Thanks very much!

  • @sudheerinbloom
    @sudheerinbloom 4 роки тому +1

    Trust me. Very nicely explained with lots of examples. Keep it up man!! Thanks.

  • @navvin1983
    @navvin1983 3 роки тому +1

    well explained

  • @vasuaaryan2382
    @vasuaaryan2382 2 роки тому

    I am unable to access through ip it is working only with localhost

  • @stahelpeter
    @stahelpeter 5 років тому +1

    Excellent video with a lot of usefull information. Thank you

  • @np2819
    @np2819 5 років тому +1

    This is really well explained Amit.

  • @sanjnaaggarwal2338
    @sanjnaaggarwal2338 Рік тому

    👌

  • @fujinclado4918
    @fujinclado4918 5 років тому +1

    Excellent work.

  • @kshatriya5
    @kshatriya5 5 років тому +1

    good explanation.

  • @malepativaraprasad
    @malepativaraprasad 5 років тому +1

    Amit.. Can we have any windows setup videos?

    • @techognite
      @techognite  5 років тому

      We do not have any windows setup videos.
      For windows you can download Nginx binary and execute the nginx.exe file. All the configuration for window is similar to Linux.

  • @poohbear1915
    @poohbear1915 4 роки тому

    while installing this part on nginx "curl localhost" and getting a msg like this curl: (7) Failed to connect to localhost port 80: Connection refused... What to do????
    "etc/nginx/sites-enabled/letsencrypt" failed (21: Is a directory) How to solve this??? Help Help Help
    configuration file /etc/nginx/nginx.conf test failed.

  • @vishnukrajan1872
    @vishnukrajan1872 4 роки тому

    At 7.31 minute of this video,How did type # on it,i cant type #...how did you done it??

  • @akhilhanda2000
    @akhilhanda2000 5 років тому +1

    good video, thanks

  • @silentknight4611
    @silentknight4611 5 років тому +1

    how would I set something like this up, if I wanted to route traffic through a reverse proxy server to a Virtual Private network? The port number would be 2000

    • @techognite
      @techognite  5 років тому

      If you wants to route all your 80 port traffic to Virtual Private network listing on 2000 port, configuration would be as below.
      server {
      listen 80;
      location / {
      proxy_pass xx.xx.xx.xx:2000;
      }
      }

  • @nathandrake8918
    @nathandrake8918 5 років тому

    using elinks is not working for me . Can you help me ??

  • @loiuc4600
    @loiuc4600 4 роки тому

    listen 6969;
    server_name localhost;
    location / {
    root /html;
    index index.html index.htm;
    }
    location /weather {
    root /weather;
    index test_index.html;
    }
    ==>I have some code lines. But when i put the link: localhost:6969/weather, 404 not found was returned. Why? Please!

  • @infamyy
    @infamyy 4 роки тому

    Nice video!

  • @manippaudel1879
    @manippaudel1879 4 роки тому

    Hello.com , tech.com not working, it works only when i enter 127.0.1.1. How to solve it.