You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
522 B
33 lines
522 B
2 years ago
|
{
|
||
|
"max_clients": 30,
|
||
|
"servers":
|
||
|
[
|
||
|
{
|
||
|
"listen": ["80", "[::]:80"],
|
||
|
"server_name": "localhost",
|
||
|
"return": "301 https://$host$uri"
|
||
|
|
||
|
},
|
||
|
{
|
||
|
"listen": ["443", "[::]:443"],
|
||
|
"server_name": "localhost",
|
||
|
"root": "datas",
|
||
|
"locations":
|
||
|
{
|
||
|
"/site":
|
||
|
{
|
||
|
"root": "datas/website",
|
||
|
"index": ["index.html", "index.php"],
|
||
|
"try_files": "$uri /$uri =404"
|
||
|
},
|
||
|
"/img":
|
||
|
{
|
||
|
"index": ["datas/gallery.html"],
|
||
|
"autoindex": true
|
||
|
},
|
||
|
"/": {"return": "404"}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|