Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7555145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:31:36+00:00 2026-05-30T11:31:36+00:00

how to display the image, which stored outside from the project directory? Is there

  • 0

how to display the image, which stored outside from the project directory?

Is there a simple way to do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T11:31:38+00:00Added an answer on May 30, 2026 at 11:31 am

    I see two ways :

    • On top of your rails server, in production and sometimes in dev, you have to use a web server like apache or nginx. With these, you can serve files from other directories for specific URL. E.G. you can make http://yourapp.com/images/ serving files from a specific dir. In rails, display the image with a traditionnal image_tag

    Example with Nginx :

        # Find the right `server` section which you currently use to serve your rails app
    server {
          listen 80;
    
          # Add this
          location /images {
            root /var/www/my/specific/folder;
          }
    
          location / {
            #...
            #... Here you should already some code to proxy to your rails server
          }
        }
    
    With that, when you access to `yourserver.com/images`, nginx serve your specific folder and not your rails app. Then in your app view :
    
        <%= image_tag 'http://yourserver.com/images/my_pic.jpg' %>
    
    • If you can’t access your server settings, you can serve an image file from a controller action with send_file

      In a controller :

      class ImagesController < ApplicationController
        def show
          send_file File.join('/var/www/my/specific/folder',params[:name]), :disposition => 'inline'
        end
      end
      

      In config/routes.rb

      match '/images/:name' => 'images#show', :as => :custom_image
      

      Then when you access this action (via the route you defined in config/routes.rb), you have the image. So in your view you do a traditionnal image_tag with this URL :

      <%= image_tag custom_image_path( 'my_pic.jpg' ) %>
      OR
      <%= image_tag custom_image_url( 'my_pic.jpg' ) %>
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

how to display the image, which is stored in outside from the project directory.
How can I display jpg image which I stored in arraylist in JPanel? Im
I display an image in a UIImageView (within a UIScrollView) which is also stored
I have an activity in which I display an image that is stored on
If I can retrieve image data from sql-server database, which stored as image type.
how can i display a image on button which is presented on UINavigationController iphone
I have an object of type IMAGE which holds image. I wanted to display
I need to display an image, which I've done without problems before, but today
I've written a simple control which basically displays a few words with an image
I have a asp page in which i have to display the image which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.