Search found 1 match
- Thu May 26, 2016 12:26 pm
- Forum: Web Server
- Topic: Nginx configuration issue
- Replies: 1
- Views: 3022
Nginx configuration issue
I'm trying to configure nginx so it will also execute aspx files as php but after I add: location ~ \.aspx$ { fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; if (!-f $document_root$fastcgi_script_name) { return 404; } fastcgi_pass 127.0.0.1:9002; fastcgi_index index.php; include /e...