18 lines
368 B
Plaintext
18 lines
368 B
Plaintext
server {
|
|
listen 8082;
|
|
server_name localhost;
|
|
|
|
root /var/www/html/hmac_edu;
|
|
index index.php index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
include fastcgi_params;
|
|
fastcgi_pass app:9000;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
}
|
|
}
|