Skip to content

Instantly share code, notes, and snippets.

@YoSoyPhil
Forked from iam-hussain/default HTTP
Created January 8, 2024 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YoSoyPhil/ca31b93d74e9ddb3cba050560f6af9da to your computer and use it in GitHub Desktop.
Save YoSoyPhil/ca31b93d74e9ddb3cba050560f6af9da to your computer and use it in GitHub Desktop.
Serve nextJS app from a port through NGINX reverse proxy HTTP and HTTPS
# Serve nextJS app from a port through NGINX reverse proxy (HTTP)
# Path: /etc/nginx/sites-available/default
# Default server configuration for HTTP
server {
server_name www.DOMAINNAME.com DOMAINNAME.com;
# Serve any static assets with NGINX
location /_next/static {
alias /home/ubuntu/PROJECT_FOLDER/.next/static;
add_header Cache-Control "public, max-age=3600, immutable";
}
location / {
try_files $uri.html $uri/index.html # only serve html files from this dir
@public
@nextjs;
add_header Cache-Control "public, max-age=3600";
}
location @public {
add_header Cache-Control "public, max-age=3600";
}
location @nextjs {
# reverse proxy for next server
proxy_pass http://localhost:8080; #Don't forget to update your port number
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
listen 80 default_server;
listen [::]:80;
}
# Serve nextJS app from a port through NGINX reverse proxy (HTTPS)
# Path: /etc/nginx/sites-available/default
# Default server configuration for HTTPS
server {
server_name www.DOMAINNAME.com DOMAINNAME.com;
# Serve any static assets with NGINX
location /_next/static {
alias /home/ubuntu/PROJECT_FOLDER/.next/static;
add_header Cache-Control "public, max-age=3600, immutable";
}
location / {
try_files $uri.html $uri/index.html # only serve html files from this dir
@public
@nextjs;
add_header Cache-Control "public, max-age=3600";
}
location @public {
add_header Cache-Control "public, max-age=3600";
}
location @nextjs {
# reverse proxy for next server
proxy_pass http://localhost:8080; #Don't forget to update your port number
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
listen [::]:443 ssl ipv6only=on;
listen 443 ssl default_server;
# Update with your SSL files. This is certbot genrated SSL details
# Steps to generate cerbot SSL https://certbot.eff.org/lets-encrypt/ubuntufocal-nginx
ssl_certificate /etc/letsencrypt/live/SOME_PROJECT_NAME/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/SOME_PROJECT_NAME/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
}
server {
if ($host = www.DOMAINNAME.com) {
return 301 https://$host$request_uri;
}
if ($host = DOMAINNAME.com) {
return 301 https://$host$request_uri;
}
listen 80 ;
listen [::]:80 ;
server_name www.DOMAINNAME.com DOMAINNAME.com;
return 301 https://$host$request_uri;
}
# Test Nginx config
sudo nginx -t
# If you got error then just delete the log.txt file then
sudo nginx -s reload
# Status
sudo systemctl status nginx
# start
sudo systemctl start nginx
# Restart
sudo systemctl restart nginx
# Stop
sudo systemctl stop nginx
# Nginx Security
sudo ufw app list
sudo ufw allow 'Nginx Full'
# Port verification
sudo lsof -i TCP:80
#for SSH
# https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment