Listing Thumbnail

    Stable Diffusion AI Image Generation Server (Automatic1111 WebUI/API)

     Info
    Deployed on AWS
    A fully ready-to-use Stable Diffusion server for AI-powered image generation, pre-configured for deployment on AWS with the Automatic1111 Web Interface and HTTPS access. Simply launch the AMI and open the image generation interface in your web browser via the server's IP address. The server has an advanced API with authorization and secure HTTPS access, enabling integration with other applications.

    Overview

    A fully ready-to-use Stable Diffusion server for AI-powered image generation, pre-configured for deployment on AWS with the Automatic1111 web interface and HTTPS access. Simply launch the AMI and open the image generation interface in your web browser via the server's IP address. The server has an advanced API with authorization and secure HTTPS access, enabling integration with other applications.

    The server comes with NVIDIA Tesla drivers preinstalled and can be launched on g4dn instances powered by NVIDIA Tesla T4 GPUs.

    Despite the simplicity of setup, the server is secure: all image generation is performed locally on the server, while access to the interface and image downloads are protected with HTTPS.

    Pre-installed SDXL models:

    • Stable Diffusion XL Base v1.0_0.9 VAE (default). This version of the Stable Diffusion XL (SDXL) base model includes the Variational Autoencoder (VAE) from the earlier 0.9 release, providing high-quality, versatile image generation with improved detail, composition, and scalability.
    • Realistic Vision V6.0 B1. This is a highly detailed AI image generation model designed to create photorealistic visuals with sharp realism and natural aesthetics.
    • Stable Diffusion v1.5 pruned, EMA-only. This is a lightweight, widely compatible model with fast performance, though it produces lower visual quality compared to XL model.

    Areas of use:

    • This server can be used both for learning the basics of AI-powered image creation and for producing professional artistic graphics.
    • Text-to-Image Generation. Enter a text prompt and get an image.
    • Image-to-Image Transformation. Upload an image, enter a new prompt, and get a modified result.
    • Image Enhancement, Stylization, and Variations. Simple Web Interface accessible directly from your browser.
    • The server can be used individually through the Web Interface, or, via the API, it can operate in conjunction with other applications.

    Key Features:

    • Easy to Use - No configuration required. After launch, you don't even need SSH access; you can start working immediately through the web interface.
    • The Server can be used either through the Web Interface and/or via the API.
    • Web Interface accessible directly from your browser.
    • Advanced API with authorization.
    • Preinstalled Tesla Drivers for NVIDIA GPUs.
    • GPU/CPU Acceleration - computations are performed on your instance's hardware.
    • Fully Local Image Generation - all processing happens on the server.
    • No Data Sent Externally - prompts and images remain on your server.
    • Secure HTTPS Access for Web Interface, API and image downloads even when accessed directly via the server's IP address.

    Highlights

    • Easy to Use - No configuration required. After launch, you don't even need SSH access; you can start working immediately through the Web Interface or API.
    • Preinstalled Tesla Drivers for NVIDIA GPUs.
    • Fully Local Image Generation - all processing happens on the server. No Data Sent Externally - prompts and images remain on your server. Secure HTTPS Access for Web Interface, API and image downloads even when accessed directly via the server's IP address.

    Details

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    Ubuntu 22.04

    Deployed on AWS

    Unlock automation with AI agent solutions

    Fast-track AI initiatives with agents, tools, and solutions from AWS Partners.
    AI Agents

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Stable Diffusion AI Image Generation Server (Automatic1111 WebUI/API)

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time. Alternatively, you can pay upfront for a contract, which typically covers your anticipated usage for the contract duration. Any usage beyond contract will incur additional usage-based costs.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (7)

     Info
    Dimension
    Cost/hour
    g4dn.xlarge
    Recommended
    $0.125
    g4dn.2xlarge
    $0.183
    g4dn.12xlarge
    $0.93
    g4dn.16xlarge
    $1.733
    g4dn.4xlarge
    $0.316
    g4dn.metal
    $2.105
    g4dn.8xlarge
    $0.546

    Vendor refund policy

    You may terminate the instance at anytime to stop incurring charges.

    How can we make this page better?

    We'd like to hear your feedback and ideas on how to improve this page.
    We'd like to hear your feedback and ideas on how to improve this page.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Additional details

    Usage instructions

    After launching the server, it is immediately ready to work; no additional settings are required.

    Linux username: ubuntu

    On this server, Automatic1111 runs as a service named "stable-diffusion", which can be stopped, started, restarted, or checked using the following Linux commands:

    • sudo service stable-diffusion stop/start/restart/status

    Web interface:

    • https://[Public_IP_Address]
    • Login: admin
    • Password: use your instance ID as password

    When accessing the Web Panel using the HTTPS protocol, your web browser may display a warning about potential risks due to the use of IP address in the URL. In this case, you should proceed and accept the risks, as our goal is to encrypt traffic, and there is no reason to worry about using IP address in a web browser.

    Please note that after the instance is launched, the server may need a few minutes before the web interface becomes available. Also note that generating the first image will take longer than generating subsequent ones - the first image generation may take 5-6 minutes.

    API interface:

    • https://[Public_IP_Address]/sdapi/v1/
    • API login: api
    • API password: use your instance ID as password

    Detailed API documentation:

    When making API requests, please note that this server accepts API requests over HTTPS, requires authentication (username/password), and the verification of self-signed certificates should be disabled when sending requests.

    Example of a simple PHP request using cURL:

    $api_url = "https://[Public_IP_Address]/sdapi/v1/txt2img";

    //Prompt

    $data = [

    "prompt" => "black cat", "steps" => 20, "width" => 1024, "height" => 1024

    ];

    // cURL init

    $ch = curl_init($api_url);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type: application/json"]);

    curl_setopt($ch, CURLOPT_POST, true);

    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));

    //It needed for self-signed certificates

    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

    //Authentication

    curl_setopt($ch, CURLOPT_USERPWD, "login:password");

    //Request

    $response = curl_exec($ch);

    if (curl_errno($ch)) {

    die("cURL Error: " . curl_error($ch));

    }

    curl_close($ch);

    //Answer

    $result = json_decode($response, true);

    //Image saving

    if (isset($result["images"][0])) {

    $image_base64 = $result["images"][0]; $image_data = base64_decode($image_base64); file_put_contents("output.png", $image_data); echo "Image has been saved as output.png\n";

    } else {

    echo "Can't generate an image.\n";

    }

    Support

    Vendor support

    If you have any questions regarding the deployment or use of this server, you can use the Contact Us form on our website or reach out via email. We guarantee a response within 24 hours.

    Contact US: https://www.adeoclouds.eu/contact.php 

    E-mail: admin@adeoclouds.eu 

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 AWS reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.