user1020069
user1020069

Reputation: 1570

Configuring the webserver on a production site for Symfony

I am setting up my Symfony project on the production site. @ this point it states:

This project uses the symfony libraries. If you see no image in this page, you may need to configure your web server so that it gains access to the symfony_data/web/sf/ directory.

Which basically means, I need to get into httpd.conf file and make some changes (for those who have diligently followed the Symfony tutorials, you guys know what I am talking about). Given this situation, I am not sure how I can go about configuring the httpd.conf file on the production server.

Anyone have any strategies around this? Thanks,

Parijat

Upvotes: 1

Views: 383

Answers (1)

66Ton99
66Ton99

Reputation: 450

You can do it by adding symbolic link from your symfony_data/web/sf to web/sf but your web server must follow symbolic links or you can add "Options Indexes FollowSymLinks" in to your .htaccess

Upvotes: 1

Related Questions