Spaces:
Sleeping
Sleeping
Upload nginx.conf
Browse files- client/nginx.conf +3 -0
client/nginx.conf
CHANGED
|
@@ -3,6 +3,9 @@ server {
|
|
| 3 |
listen 80;
|
| 4 |
server_name localhost;
|
| 5 |
|
|
|
|
|
|
|
|
|
|
| 6 |
# Serve static files
|
| 7 |
location / {
|
| 8 |
root /usr/share/nginx/html;
|
|
|
|
| 3 |
listen 80;
|
| 4 |
server_name localhost;
|
| 5 |
|
| 6 |
+
# Disable access logging to avoid permission issues
|
| 7 |
+
access_log off;
|
| 8 |
+
|
| 9 |
# Serve static files
|
| 10 |
location / {
|
| 11 |
root /usr/share/nginx/html;
|