Mischa
2018-04-10 19:24:16 UTC
Hi All,
Is there a way to serve both static and dynamic content, eg. index.html and index.php within the same server { } definition?
I am looking for something like:
server "default" {
listen on $ext_addr port 80
root "/htdocs"
directory index "index.html" # not needed as it's the default
location "/files/*" {
root "/htdocs/files"
directory auto index
}
location "^/phpapp/*" {
root "/htdocs/phpapp"
directory index "index.php"
fastcgi socket "/run/php-fpm.sock"
}
}
Is this possible at all or do I need split static and dynamic content based on server { }?
Thanx!!
Mischa
Is there a way to serve both static and dynamic content, eg. index.html and index.php within the same server { } definition?
I am looking for something like:
server "default" {
listen on $ext_addr port 80
root "/htdocs"
directory index "index.html" # not needed as it's the default
location "/files/*" {
root "/htdocs/files"
directory auto index
}
location "^/phpapp/*" {
root "/htdocs/phpapp"
directory index "index.php"
fastcgi socket "/run/php-fpm.sock"
}
}
Is this possible at all or do I need split static and dynamic content based on server { }?
Thanx!!
Mischa