diff --git a/Vagrantfile b/Vagrantfile index f24179c0..0da7af64 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,9 +10,9 @@ Vagrant.configure("2") do |config| end config.vm.define 'default' do |node| - node.vm.hostname = 'pony.fm.local' + node.vm.hostname = 'ponyfm-dev.poni' node.vm.network :private_network, ip: "192.168.33.11" - node.hostmanager.aliases = %w(api.pony.fm.local) + node.hostmanager.aliases = %w(api.ponyfm-dev.poni) end config.vm.synced_folder ".", "/vagrant", type: "nfs" diff --git a/vagrant/pony.fm.nginx.site.config b/vagrant/pony.fm.nginx.site.config index 3fbc6dbe..17081e6a 100644 --- a/vagrant/pony.fm.nginx.site.config +++ b/vagrant/pony.fm.nginx.site.config @@ -8,7 +8,7 @@ server { gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon image/bmp application/json; gzip_vary on; - server_name pony.fm.local api.pony.fm.local; + server_name ponyfm-dev.poni api.ponyfm-dev.poni; access_log /vagrant/storage/logs/system/nginx-access.log; error_log /vagrant/storage/logs/system/nginx-error.log; root /vagrant/public;