Skip to content

Instantly share code, notes, and snippets.

View okeken's full-sized avatar
🎯
Focusing

Oke Kehinde okeken

🎯
Focusing
View GitHub Profile
@okeken
okeken / react nginx
Last active April 30, 2023 21:12 — forked from oelbaga/01 - Setup Nextjs site on Ubuntu Server - Terminal commands
Setup NextJS app on Digital Ocean Ubuntu server Full Terminal Commands Step by Step
server {
listen 80;
listen [::]:80;
root /var/www/your_domain/html;
index index.html index.htm index.nginx-debian.html;
server_name your_domain www.your_domain;
location / {