Add CI/CD pipeline and Docker configuration for FHIR IG deployment
Some checks failed
FHIR IG CI/CD Pipeline / build-ig (push) Failing after 3m38s
FHIR IG CI/CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
jobayer
2025-09-29 17:24:48 +06:00
parent bd5e7517bd
commit 381e005976
4 changed files with 351 additions and 23 deletions

27
nginx.conf Normal file
View File

@@ -0,0 +1,27 @@
pid /var/cache/nginx/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Logging
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log warn;
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
}
}