Skip to content
Tutorial emka
Menu
  • Home
  • Debian Linux
  • Ubuntu Linux
  • Red Hat Linux
Menu

Tutorial Cara Setting Nginx Server dan Websocket

Posted on October 29, 2024

Dalam dunia aplikasi yang serba cepat, update real-time seperti notifikasi langsung atau fitur chat menjadi sangat penting. WebSockets, sebuah teknologi yang memungkinkan koneksi dua arah terus-menerus antara klien dan server, menjadi kunci untuk menghadirkan pengalaman ini. Namun, untuk memastikan koneksi WebSockets berjalan lancar, Anda perlu mengatur server web Anda, seperti Nginx, dengan tepat.

https://example.comwss://example.com/live-updates

/etc/nginx/sites-available/default/etc/nginx/nginx.conf

server {
    listen 80;
    server_name example.com;

    # Konfigurasi lainnya (seperti root, index, dll.)

    location /live-updates {
        proxy_pass http://localhost:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
    }

    location / {
        proxy_pass http://localhost:3000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}
    

Penjelasan Konfigurasi:

  • proxy_passlocalhost:3000

  • proxy_http_version 1.1

  • proxy_set_header Upgrade $http_upgradeproxy_set_header Connection “upgrade”

  • Langkah 3: Merestart Nginx

    Setelah melakukan perubahan, restart Nginx untuk menerapkan konfigurasi baru. Jalankan perintah berikut:

          sudo systemctl restart nginx
        

    Recent Posts

    • Is it Time to Replace Nano? Discover Fresh, the Terminal Text Editor You Actually Want to Use
    • How to Design a Services Like Google Ads
    • How to Fix 0x800ccc0b Outlook Error: Step-by-Step Guide for Beginners
    • How to Fix NVIDIA App Error on Windows 11: Simple Guide
    • How to Fix Excel Formula Errors: Quick Fixes for #NAME
    • How to Clear Copilot Memory in Windows 11 Step by Step
    • How to Show Battery Percentage on Windows 11
    • How to Fix VMSp Service Failed to Start on Windows 10/11
    • How to Fix Taskbar Icon Order in Windows 11/10
    • How to Disable Personalized Ads in Copilot on Windows 11
    • What is the Microsoft Teams Error “We Couldn’t Connect the Call” Error?
    • Why Does the VirtualBox System Service Terminate Unexpectedly? Here is the Full Definition
    • Why is Your Laptop Touchpad Overheating? Here are the Causes and Fixes
    • How to Disable All AI Features in Chrome Using Windows 11 Registry
    • How to Avoid Problematic Windows Updates: A Guide to System Stability
    • What is Microsoft Visual C++ Redistributable and How to Fix Common Errors?
    • What is the 99% Deletion Bug? Understanding and Fixing Windows 11 File Errors
    • How to Add a Password to WhatsApp for Extra Security
    • How to Recover Lost Windows Passwords with a Decryptor Tool
    • How to Fix Python Not Working in VS Code Terminal: A Troubleshooting Guide
    • Game File Verification Stuck at 0% or 99%: What is it and How to Fix the Progress Bar?
    • Why Does PowerPoint Underline Hyperlinks? Here is How to Remove Them
    • AI Bug Hunting with Semgrep
    • What is the Excel Power Query 0xc000026f Error?
    • How to Build Your Own Homelab AI Supercomputer 2026
    • Inilah Cara Mengaktifkan Fitur Vertical Tab di Google Chrome Biar Tampilan Browser Kalian Makin Lega dan Rapi
    • Inilah Alasan Kenapa elementary OS Adalah Pilihan Paling Pas Buat Pengguna macOS yang Ingin Coba Linux
    • Inilah Alasan Kenapa Windows Server Kalian Restart Terus Setelah Update April 2026
    • Inilah Alasan Layar TV Kalian Sering Kedip Hitam Saat Main Game dan Cara Mengatasinya
    • Inilah Rekomendasi HP Redmi Note RAM 12 GB dan Koneksi 5G Paling Worth It Buat Kalian
    • How to use the Wan 2.7 AI model: A complete walkthrough
    • How to Run Minimax M2-7 Locally: A Step-by-Step Guide for Beginners
    • How to Build Self-Driving Codebases with Async Agents and NVIDIA Hardware
    • How to create a professional AI influencer using Apob AI
    • How to Use AI-Powered Tools to Level Up Your Stock Market Research Game with Claude Code
    • CrownPlay Konto‑Verifizierung – Schritt‑für‑Schritt Anleitung für deutsche Spieler
    • Coronavirus disease 2019
    • La modernidad de Chamartín, distrito financiero de Madrid.
    • New Text Document
    • Apa itu Spear-Phishing via npm? Ini Pengertian dan Cara Kerjanya yang Makin Licin
    ©2026 Tutorial emka | Design: Newspaperly WordPress Theme