Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

2 container create dockerfile

Open Christophe Chaudier requested to merge 2-container-create-dockerfile into master
9 files
+ 203
10616
Compare changes
  • Side-by-side
  • Inline
Files
9
nginx/app.conf 0 → 100644
+ 15
0
 
server {
 
listen 8080;
 
server_name localhost;
 
 
location / {
 
root /var/www/;
 
index index.html index.htm;
 
try_files $uri $uri/ /index.html;
 
}
 
 
error_page 500 502 503 504 /50x.html;
 
location = /50x.html {
 
root /var/www/;
 
}
 
}
Loading