Questions tagged [dreamhost]

DreamHost is a Los Angeles-based web hosting, public cloud provider and domain name registrar.

DreamHost is a Los Angeles-based hosting, public cloud provider, and domain name registrar.

DreamHost's shared, , and dedicated hosting network consists of Apache, nginx and lighttpd web servers running on the Debian GNU/Linux operating system. Also included are 25+ apps including , Drupal, Joomla and Magento e-commerce along with free certificates, multi-factor authentication, and Whois privacy.

DreamHost Cloud offers cloud computing services and storage, based on and making it compatible with the most popular SDKs and configuration management tools. Its virtual servers are fast, ssh ready in 30 seconds (or less).

DreamHost's Cloud team welcomes contributions to the Cloud Knowledge Base on github and regularly hangs out on IRC freenode #dreamhost.

484 questions
2
votes
1 answer

Why did I have to upload my private key to my server to get Capistrano to work with GitHub?

From what I've read, including this article on GitHub itself, by using ssh agent forwarding, I should not have needed to upload my private id_rsa key to my server in order for Capistrano to connect to GitHub. Yet, until I uploaded it, cap deploy…
Eben Geer
  • 3,696
  • 3
  • 31
  • 34
2
votes
1 answer

How to connect windows7 Git to dreamhost server Git

I am planning to use Git as SCM tool, the repository I am using is Dreamhost. I'm trying to connect Git from my local machine (Windows 7) to the Git on my dreamhost server. I have installed git version 1.7.6 n both the Dreamhost and my local…
Akash Deshpande
  • 2,583
  • 10
  • 41
  • 82
2
votes
1 answer

Automatic pushing to Dreamhost from Github via Workflows

Recently transitioned hosting my website to Dreamhost from Netlify in order to host a dynamic site. One thing I miss is the ability to automatically deploy from Github to the hosting service when changes are detected in my repo. I've found tutorials…
2
votes
2 answers

Deploying Chiliproject to Dreamhost

Having some issues deploying this. I've tried to deploy it twice now. Here's what I've done so far.... Installed the gems and versions required on the install page: gem install -v=2.3.5 rails gem install -v=1.0.1 rack gem install -v=0.8.7 rake gem…
hamstar
  • 1,787
  • 4
  • 16
  • 23
2
votes
1 answer

Migrating a domain I bought from dreamhost to Amazon

I'm in the use case where I had nothing on this domain, nothing was started on either side, I just bought the domain on the wrong service. I imagine it's possible to transfer ownership to AWS, so that I may start managing the DNS from there rather…
tatsu
  • 2,316
  • 7
  • 43
  • 87
2
votes
0 answers

Getting DNS_PROBE_FINISHED_NXDOMAIN trying to make subdomain in Dreamhost

Website is abc.com, I made landingpage.abc.com, FTP'd some files in, clicked Visit in Dreamhost, and got DNS_PROBE_FINISHED_NXDOMAIN error, page wouldn't load. Please tell me what else I need to tell you to get an answer for this, if…
TimW
  • 63
  • 6
2
votes
1 answer

CakePHP join queries don't fire on Dreamhost

My CakePHP site works perfectly in my dev environment which is XAMPP with PHP 5.3.1. I pushed up my site to Dreamhost where I host all my sites and discovered the join queries are not firing so I'm not getting a complete data set to loop through on…
Kris
  • 21
  • 1
2
votes
3 answers

Django serving 500 errors for every view except root

So I am trying to deploy to my production environment and am getting 500 errors for every view except the root URL: http://5buckchuck.com/ The errors appear to apache errors, not the fancy django ones: Internal Server Error The server encountered…
bmartinek
  • 568
  • 2
  • 6
  • 17
2
votes
0 answers

Dreamhost Rack woes

Possible Duplicate: Phusion Passenger Error: You have activated rack 1.2.1, but your Gemfile requires rack 1.2.2. I have a Rails 3.0.6 application running on dreamhost. Sometimes I get this passenger error: You have already activated rack…
2
votes
1 answer

How to deploy nestjs app to Dreamhost VPS

How do you deploy a nestjs app to Dreamhost VPS? Simply adding NodeJS and copying up your nestjs dist folder contents to the root of your site does not work. I can't seem to find any documentation on Dreamhost or nestjs to explain how to go about…
mkimmet
  • 749
  • 3
  • 15
  • 27
2
votes
3 answers

How do I set my rails 3 app to development mode?

I need to set my rails 3 app on DreamHost to development mode. In rails 2.3, I used to set it at environment.rb. How and where do I do that for rails 3? Thanks. Sam
Sam Kong
  • 5,472
  • 8
  • 51
  • 87
2
votes
1 answer

Laravel Scheduler not working in Dreamhost VPS

Laravel scheduler doesn't work in Dreamhost VPS. Dreamhost has a limitation of not allowing every minute calls so I am doing it in a 10 minute call instead. However, the scheduler doesn't fire in any case. I have tried the following cron…
gjg2013
  • 141
  • 12
2
votes
1 answer

Wordpress, SSL and admin

I'm setting up my first Wordpress site, and having a bit of an issue with SSL in the admin. I've got my certificate, and added define('FORCE_SSL_ADMIN', true); to the appropriate place in wp-config.php When I log into the admin via the https link,…
Jay P.
  • 651
  • 3
  • 11
2
votes
1 answer

Freeze Rails 2.1.0 in Dreamhost using Rails 3.0

I have 2 applications on Dreamhost using Rails 2.1.0, recently they installed Rails 3 on my server and broke my apps. I found this post that explains how to freeze a rails app - http://www.softiesonrails.com/2008/1/3/freezing-your-rails-application,…
2
votes
1 answer

Basic Express/Node Function Syntax Not Working

On my Mac, I can create a simple "Hello World" Node/Express app like this: const express = require('express') const app = express() app.get('/', function(req, res){ res.send('Yo') }) app.listen(3000, () => console.log('Listening on port…
Clifton Labrum
  • 13,053
  • 9
  • 65
  • 128