We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37e4fe commit aba775aCopy full SHA for aba775a
nginx/templates/nginx.conf.template
@@ -1,5 +1,5 @@
1
-upstream docker_codeIgniter {
2
- server codeIgniter:9000;
+upstream docker_codeigniter {
+ server codeigniter:9000;
3
}
4
5
server_tokens off;
@@ -45,7 +45,8 @@ server {
45
# add global x-content-type-options header
46
add_header X-Content-Type-Options nosniff;
47
48
- root /var/www/html;
+ root /var/www/html/appstarter/public;
49
+ index index.php;
50
51
location / {
52
try_files $uri /index.php$is_args$args;
@@ -60,7 +61,7 @@ server {
60
61
# Mitigate https://httpoxy.org/ vulnerabilities
62
fastcgi_param HTTP_PROXY "";
63
- fastcgi_pass docker_codeIgniter;
64
+ fastcgi_pass docker_codeigniter;
65
fastcgi_index index.php;
66
67
# include the fastcgi_param setting
0 commit comments