Heim > Artikel > Backend-Entwicklung > Jede Art von Nginx-PHP (.py) wird als PHP-Konfigurationsmethode interpretiert
Nehmen Sie die .py-Datei als Beispiel
1. Konfigurieren Sie den Speicherort in ngxin.conf
... server { listen 80 default; server_name _; index index.html index.htm index.php; root /alidata/www/default; <span style="color:#ff0000;">location ~ .*\.(php|php5|py)?$</span> { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h; } access_log /alidata/log/nginx/access/default.log; } ...
security.limit_extensions = .php .php3 .php4 .php5 .py
Das Obige stellt die Interpretation jeder Art von Nginx-PHP in die PHP-Konfigurationsmethode vor, einschließlich Aspekten des Inhalts. Ich hoffe, dass es für Freunde hilfreich sein wird, die an PHP-Tutorials interessiert sind.