OCram85
ad2d82e5aa
#### 📖 Summary <!-- Provide a summary of your changes. Describe the why and not how. --> - workaround for ipv6 issue after updating docker - disable healtcheck due to timing issues #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] CI pipeline - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Reviewed-on: #50
18 lines
249 B
Nginx Configuration File
18 lines
249 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
http {
|
|
include mime.types;
|
|
|
|
server {
|
|
listen 0.0.0.0:80;
|
|
root /usr/share/nignx/html;
|
|
index index.html;
|
|
error_page 404 /404.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
}
|