12 lines
173 B
Nginx Configuration File
12 lines
173 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name static.oriabenk.42.fr;
|
|
|
|
root /var/www/static;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|