带有 perl 软件的 Nginx conf 文件

带有 perl 软件的 Nginx conf 文件

我已经在我的 Ubunti 20.4 LEMP 堆栈上成功安装了 Perl 应用程序,并且可以在以下位置访问它:http://example.com:5762/login.plhttp://example.com:5762/setup.pl 想通过文件foo夹中的子目录安装和访问该软件:example.com/foo我已经修改了配置文件,但是当我单击那里时,出现了页面未找到错误,如下所示这一页我无法通过子目录 URL 访问该软件。我的 Nginx 配置文件如下。我缺少什么才能通过子目录 URL 访问该应用程序:example.com/foo

## Nginx Configuration File
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

# Default server configuration
#
server
{
  listen 80 ;
  listen [::]:80 ;

  # SSL configuration
  #
  # listen 443 ssl default_server;
  # listen [::]:443 ssl default_server;
  #
  # Note: You should disable gzip for SSL traffic.
  # See: https://bugs.debian.org/773332
  #
  # Read up on ssl_ciphers to ensure a secure configuration.
  # See: https://bugs.debian.org/765782
  #
  # Self signed certs generated by the ssl-cert package
  # Don't use them in a production server!
  #
  # include snippets/snakeoil.conf;

  root /var/www/example.com/html/root;

  # Add index.php to the list if you are using PHP
  index index.php index.html index.htm index.nginx-debian.html;

  server_name example.com www.example.com;

  location /
  {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ /index.php?$args;
  }

  # pass PHP scripts to FastCGI server
  #
  location ~ \.php$
  {
    include snippets/fastcgi-php.conf;
    #
    #   # With php-fpm (or other unix sockets):
    fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
    #   # With php-cgi (or other tcp sockets):
    #   fastcgi_pass 127.0.0.1:9000;
  }

  # deny access to .htaccess files, if Apache's document root
  # concurs with Nginx's one
  #
  location ~ /\.ht
  {
    deny all;
  }
## I added this block to access the Perl application on the /foo subdirectory 
  location /foo/
  {
    root /var/www/example.com/html/root;
    try_files $uri $uri/ @starman;
  }

  # Configuration files don't exist
  location @starman
  {
    # If you changed the port in the Starman service file, change it here too
    proxy_pass http://localhost:5762;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_cookie_path ~^/$ /foo/;
   }
 }

# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
#   listen 80;
#   listen [::]:80;
#
#   server_name example.com;
#
#   root /var/www/example.com;
#   index index.html;
#
#   location / {
#       try_files $uri $uri/ =404;
#   }
#}

相关内容