Some checks failed
ecommerce admin pannel/pipeline/head Something is wrong with the build of this commit
12 lines
177 B
Nginx Configuration File
12 lines
177 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
client_max_body_size 10m;
|
|
}
|