Skip to content

Instantly share code, notes, and snippets.

View u2ru's full-sized avatar
⛩️

Luka Urushadze u2ru

⛩️
View GitHub Profile
@u2ru
u2ru / ubuntu-nextjs-nginx-config-file
Created October 24, 2023 18:08 — 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
#nginx config file for Nextjs App
#place in /etc/nginx/sites-available/name_of_config_file
server {
listen 80;
server_name domainname.com;
gzip on;
gzip_proxied any;
gzip_types application/javascript application/x-javascript text/css text/javascript;
gzip_comp_level 5;