14 lines
No EOL
261 B
Nginx Configuration File
14 lines
No EOL
261 B
Nginx Configuration File
server {
|
|
# Change from 80 to 3000
|
|
listen 3000;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
gzip on;
|
|
gzip_types text/css application/javascript application/json;
|
|
} |