How to Publish or Host a Website using IIS Web Server

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ธ.ค. 2024

ความคิดเห็น • 37

  • @swatipandey6806
    @swatipandey6806 ปีที่แล้ว +1

    Knowledgeable 🎉🎉

  • @diamondkof
    @diamondkof ปีที่แล้ว +1

    One of my favourite channel on TH-cam ❤

    • @itadda0
      @itadda0  ปีที่แล้ว

      Appreciated 💐 Thanks

  • @Krishahlawat7668
    @Krishahlawat7668 หลายเดือนก่อน +1

    Nice video sir 👍🏻🎉

    • @itadda0
      @itadda0  หลายเดือนก่อน

      Keep Watching Ahalavat Ji 💐💐

  • @PankajSingh-um3uk
    @PankajSingh-um3uk ปีที่แล้ว +2

    Very nice Video guru ji 🎉

    • @itadda0
      @itadda0  ปีที่แล้ว

      So nice of you

  • @ehtashamshami6969
    @ehtashamshami6969 9 หลายเดือนก่อน +1

    we should set DNS or static IP. Right?

  • @MyTestMail-u1q
    @MyTestMail-u1q ปีที่แล้ว +2

    I was looking for this 🎉🎉👍👍👍👍👍👍👍👍👍👌👌👌👌👌👌👌

    • @itadda0
      @itadda0  ปีที่แล้ว

      Keep Watching 💐💐

  • @mulchandsingh3650
    @mulchandsingh3650 ปีที่แล้ว +1

    Very nice video sir 👍

    • @itadda0
      @itadda0  ปีที่แล้ว

      Keep watching

  • @thetroubleshooterrr8407
    @thetroubleshooterrr8407 11 หลายเดือนก่อน +1

    Great video👍👍👍👍

  • @ehtashamshami6969
    @ehtashamshami6969 9 หลายเดือนก่อน +1

    external access ho skti over the internet? ye local made website?

    • @itadda0
      @itadda0  9 หลายเดือนก่อน +1

      It is accessible only in an organisation If you are using local IP address or local host name not even registered DNS server

    • @ehtashamshami6969
      @ehtashamshami6969 9 หลายเดือนก่อน

      @@itadda0 what are the steps if i wanna access it from outside the organization?
      I have a static IP with a port forwarding option.
      Possible?

  • @msrnetcore1697
    @msrnetcore1697 6 หลายเดือนก่อน +1

    can we this access outside LAN?

    • @itadda0
      @itadda0  6 หลายเดือนก่อน +1

      Sure but everything should be Public like public IP, Domain Name (Website Name) Everything

    • @msrnetcore1697
      @msrnetcore1697 6 หลายเดือนก่อน

      @@itadda0 thanks a lot bro.

  • @d-15ashwinifegade61
    @d-15ashwinifegade61 3 หลายเดือนก่อน +1

    what to do if DNS is not showing in my Windows features

    • @itadda0
      @itadda0  3 หลายเดือนก่อน

      First of all if you are think about DNS in Windows 10 it is not possible it is basically roles of Windows Server operating system.

    • @d-15ashwinifegade61
      @d-15ashwinifegade61 3 หลายเดือนก่อน

      @@itadda0 So what I need to do for deployment of my .net project

  • @rajeshb6851
    @rajeshb6851 2 หลายเดือนก่อน

    How to host website on iis 7.0 and windows 7. One page website developed using windows 7 and ide visual studio ultimate 10

    • @itadda0
      @itadda0  2 หลายเดือนก่อน

      To host a simple onepage website on IIS 7.0 using Windows 7 and Visual Studio Ultimate 2010, follow these steps:
      Prerequisites
      1. Install IIS 7.0 on Windows 7 (if not already installed).
      2. ASP.NET should be installed (if your website is developed in ASP.NET).
      Step 1: Enable IIS on Windows 7
      1. Open Control Panel.
      2. Go to Programs > Turn Windows Features on or off.
      3. In the Windows Features dialog, check the following:
      Internet Information Services (IIS)
      Expand Web Management Tools and ensure IIS Management Console is checked.
      Expand World Wide Web Services, ensure Application Development Features like ASP.NET and Static Content are checked (depending on your website).
      4. Click OK and wait for the installation to complete.
      Step 2: Configure IIS for Your Website
      1. Open IIS Manager:
      Press `Windows + R`, type `inetmgr`, and press Enter.
      2. In IIS Manager:
      On the lefthand side, expand your computer name.
      Rightclick Sites and select Add Website.
      Step 3: Add Website Configuration
      1. In the Add Website window:
      Site Name: Enter a name for your website (e.g., `MyOnePageSite`).
      Physical Path: Browse and select the folder where your onepage website files (HTML, CSS, etc.) are located. If you have your project in Visual Studio, it will likely be in your solution folder under `/bin/Release/` or `/bin/Debug/`.
      Binding:
      Type: Choose `HTTP`.
      IP Address: Leave it as `All Unassigned` (or specify the local IP).
      Port: Set the port to `80` (or any custom port if 80 is occupied).
      Host Name: Leave it blank for local testing.
      2. Click OK.
      Step 4: Set Application Pool
      1. In the Add Website window, click the Application Pool dropdown and select the appropriate pool:
      If your site is ASP.NET, select the correct .NET Framework version (`v4.0` for .NET 4.x).
      If it is just an HTML page, you can leave the default Integrated pool.
      Step 5: Set Folder Permissions
      Ensure that the folder where your website resides has the proper permissions:
      1. Rightclick your website folder, select Properties.
      2. Go to the Security tab, click Edit.
      3. Ensure that IIS_IUSRS has Read and Execute permissions.
      4. Apply the changes.
      Step 6: Browse Your Website
      1. Open your web browser.
      2. In the address bar, type `localhost` (or `localhost:port` if you used a custom port).
      3. Your onepage website should load.
      Step 7: (Optional) Debugging with Visual Studio
      1. If you want to debug your website, you can use Visual Studio:
      Open your project in Visual Studio Ultimate 2010.
      Set breakpoints if needed.
      Run the project using F5 for debugging.
      2. Visual Studio will open the browser and serve the project using IIS Express.
      Now your website should be hosted and available locally on your machine through IIS 7.0.

  • @SandeepSingh-c5w9m
    @SandeepSingh-c5w9m 7 หลายเดือนก่อน +1

    Windows server 2019 मे SSL certificate कैसे install करेंगे Godaddy से purchase किया SSL को

    • @itadda0
      @itadda0  7 หลายเดือนก่อน +1

      Godaddy SSL certificates usually come with installation instructions specific to different server types. Here's a general guide to installing a GoDaddy SSL certificate on an IIS web server:
      Download Certificate Files: Go to your GoDaddy account and download the SSL certificate files. You typically receive a zip file containing the certificate file, intermediate certificate file, and sometimes a private key file.
      Install Certificate: Open the Internet Information Services (IIS) Manager on your server. Select your server from the connections pane, then double-click on "Server Certificates" in the center pane.
      Import Certificate: In the "Actions" pane on the right, click on "Complete Certificate Request." Browse to the certificate file you downloaded from GoDaddy and enter a friendly name to identify the certificate.
      Bind Certificate to Website: After importing the certificate, select your website from the connections pane. In the center pane, click on "Bindings" in the "Actions" pane. Click "Add" and choose HTTPS as the type. Select the SSL certificate you just installed and click OK.
      Restart IIS: After binding the certificate, it's a good practice to restart IIS to apply the changes.
      Verify Installation: You can use online tools like SSL Labs to verify that your SSL certificate is installed correctly and functioning as expected.

    • @SandeepSingh-c5w9m
      @SandeepSingh-c5w9m 7 หลายเดือนก่อน

      Thnks Sir.. Video भी बना दीजिये Sir इस पर एक 🙏

  • @funclubliveindia
    @funclubliveindia 3 หลายเดือนก่อน +1

    how can we run multiple web sites in a single server

    • @sonalisoni1624
      @sonalisoni1624 3 หลายเดือนก่อน

      You find any video regarding this

  • @upanshusharma6093
    @upanshusharma6093 10 หลายเดือนก่อน +2

    🔥🔥🔥🔥

  • @AlonelifeAB
    @AlonelifeAB ปีที่แล้ว

    Nyc

  • @lifeinnippon
    @lifeinnippon 9 หลายเดือนก่อน +1

    can we add a php file also from this methord

    • @itadda0
      @itadda0  9 หลายเดือนก่อน +1

      Yes

    • @lifeinnippon
      @lifeinnippon 9 หลายเดือนก่อน

      @@itadda0 if its a single php file like index.php?

    • @lifeinnippon
      @lifeinnippon 9 หลายเดือนก่อน

      when i add PHP file not loading in the browser @@itadda0

  • @upanshusharma6093
    @upanshusharma6093 10 หลายเดือนก่อน +1

    🎉🎉🎉🎉

  • @PankajSingh-um3uk
    @PankajSingh-um3uk ปีที่แล้ว +2

    ❤❤