abdulazizahwan / ultahost-nextjs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Next.js on Ultahost

Deploy React-based universal web apps on Ultahost.

Production deployment

Once you have a Next app working locally, you may deploy it for public access.

Config for /etc/nginx/app/your_serverIP
server {
 server_name your_server_IP;

 location / {
     proxy_pass http://localhost:3000;
 }
}

About

License:MIT License


Languages

Language:JavaScript 100.0%