Deploy Intel® Smart Edge Open Developer Experience Kit without Edge Software Provisioner (ESP) in an Air-Gapped Environment
Known Issues
Nginx Failed to Start
The Nginx container of the air-gap server failed to start with the log:
2022/12/20 09:07:43 [emerg] 9#9: could not build server_names_hash, you should increase server_names_hash_bucket_size: 32 nginx: [emerg] could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
This is most likely happening because of the long domain name. You can fix this by adding following line into
http { server_names_hash_bucket_size 128; }
And then apply the following patch:
diff -u docker-compose.yml.old docker-compose.yml --- docker-compose.yml.old 2022-12-20 10:20:27.232000000 +0000 +++ docker-compose.yml 2022-12-20 10:19:48.292000000 +0000 @@ -11,6 +11,7 @@ - LANG=en_US.UTF-8 volumes: - ./ssl:/tmp/ssl + - ./docker/ingress/nginx.conf:/etc/nginx/nginx.conf httpd: image: httpd:fd.1.0