12 lines
242 B
Org Mode
12 lines
242 B
Org Mode
|
server {
|
||
|
listen 80;
|
||
|
server_name afaf.theribbles.org;
|
||
|
root /concrete5;
|
||
|
index index.html;
|
||
|
|
||
|
location ~* \.php$ {
|
||
|
fastcgi_pass 127.0.0.1:9001;
|
||
|
include /etc/nginx/snippets/fastcgi-php.conf;
|
||
|
}
|
||
|
}
|