mirror of
https://git.oxeozero.it.com/oxeo0/blog-deploy.git
synced 2025-05-31 15:44:19 -04:00
12 lines
278 B
Nginx Configuration File
12 lines
278 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
}
|
|
|