一:准备环境

1.安装php,nginx.

2.创建图片储存目录/var/www/example以及上传图片,推荐在/var/www/example/images

3.设置文件权限

sudo chown -R www-data:www-data /var/www/random-images
sudo chmod -R 755 /var/www/random-images

二:创建php文件

/var/www/example内创建index.php文件

    <?php
    $image_dir = __DIR__ . '/images'; // 图片目录路径
    $images = glob($image_dir . '/*.{jpg,jpeg,png,gif}', GLOB_BRACE);
    
    if ($images) {
        // 随机选择一张图片
        $random_image = $images[array_rand($images)];
        
        // 获取图片的 MIME 类型
        $mime_type = mime_content_type($random_image);
        header("Content-Type: $mime_type");
        
        // 输出图片内容
        readfile($random_image);
    } else {
        // 如果没有图片,返回 404
        http_response_code(404);
        header("Content-Type: text/plain");
        echo "No images found.";
    }
  ...

# 三:配置nginx服务

在`/etc/nginx/sites-available`内创建`random_images`文件

    server {
        listen 80;
        server_name your-domain.com;
    
        root /var/www/random-images;
        index index.php;
    
        location / {
            try_files $uri $uri/ /index.php;
        }
    
        location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; # 根据你的PHP版本调整
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }
    
        location /images/ {
            autoindex on;
            autoindex_exact_size off;
            autoindex_format html;
        }
    }
    

## 保存配置并激活

    sudo ln -s /etc/nginx/sites-available/random-images /etc/nginx/sites-enabled/
    sudo nginx -t
    sudo systemctl reload nginx
    

## 访问测试

    http(s)://your-domain.com/