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 {
|
worker_processes 4;
|
||||||
listen 80 default_server;
|
|
||||||
|
|
||||||
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 / {
|
location /nested-app/ {
|
||||||
try_files $uri /index.html =404;
|
root /usr/share/nginx/html;
|
||||||
|
try_files $uri $uri/ /nested-app/index.html;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Ajouter le type MIME pour les fichiers JavaScript
|
|
||||||
types {
|
|
||||||
text/javascript js;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in new issue