diff options
| author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2023-05-09 21:49:06 -0700 |
|---|---|---|
| committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2023-05-09 21:49:06 -0700 |
| commit | 39ea90b2ff31760f93392634192c2a0614e20c82 (patch) | |
| tree | 91907c0cb366fadad593193cc4fd2b21f9f09181 /nginx.conf | |
| parent | 1fd64270d28ee8c83ae2920630e9c5ba218b22d3 (diff) | |
| download | simponic.xyz-39ea90b2ff31760f93392634192c2a0614e20c82.tar.gz simponic.xyz-39ea90b2ff31760f93392634192c2a0614e20c82.zip | |
export org mode to php; docker compose
Diffstat (limited to 'nginx.conf')
| -rw-r--r-- | nginx.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..4b84b34 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,18 @@ +server { + listen 80; + index index.php index.html; + server_name localhost; + error_log /var/log/nginx/error.log; + access_log /var/log/nginx/access.log; + root /var/www/html; + + location ~ \.php$ { + try_files $uri =404; + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass php:9000; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_param PATH_INFO $fastcgi_path_info; + } +} |
