start i18n
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
dad4b4507c
commit
4aac7f504a
@ -1,16 +1,16 @@
|
||||
server {
|
||||
listen 80 default_server;
|
||||
worker_processes 4;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
events { worker_connections 1024; }
|
||||
|
||||
index index.html;
|
||||
http {
|
||||
server {
|
||||
listen 8080;
|
||||
root /usr/share/nginx/html/nested-app;
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.html =404;
|
||||
}
|
||||
|
||||
# Ajouter le type MIME pour les fichiers JavaScript
|
||||
types {
|
||||
text/javascript js;
|
||||
}
|
||||
}
|
||||
location /nested-app/ {
|
||||
root /usr/share/nginx/html;
|
||||
try_files $uri $uri/ /nested-app/index.html;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue