Skip to content

Instantly share code, notes, and snippets.

View onequbit's full-sized avatar

Alfred Aquino onequbit

  • Northern Virginia
View GitHub Profile
@onequbit
onequbit / nginx.conf
Created September 2, 2025 13:39
Besaid Aurochs Proxy Config
events {
worker_connections 1024;
}
http {
server {
listen 80;
server_name localhost;
# Redirect all HTTP requests to HTTPS
return 301 https://$host$request_uri;
@onequbit
onequbit / nginx.conf
Created September 2, 2025 13:44
example nginx config
# This file routes requests for app1.example.com, app2.example.com, and app3.example.com
# to their corresponding backend services.
#
# Each application has two components:
# 1. A web server for the user interface (e.g., a Node.js/Express app serving HTML/CSS/JS).
# 2. A REST API server for data operations.
# Defines settings for HTTP traffic.
http {