Làm cách nào tôi có thể định cấu hình apache 2 trong ~ / public_html trên OpenSUSE 12.1


1

Tôi đã cài đặt OpenSUSE 12.1. Tôi đã cố gắng rất nhiều để có được lampp trên hệ thống làm việc.

tôi thiết lập nó bằng YAST - (với các cài đặt sheme) làm thế nào để nó hoạt động. Làm thế nào để cấu hình apache?

Làm thế nào tôi có thể thiết lập apache2 ~/public_html?

btw: tôi có tập tin đó được tìm thấy:

#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#

<IfModule mod_userdir.c>
    # Note that the name of the user directory ("public_html") cannot easily be
    # changed here, since it is a compile time setting. The apache package
    # would have to be rebuilt. You could work around by deleting
    # /usr/sbin/suexec, but then all scripts from the directories would be
    # executed with the UID of the webserver.
    # 
    # To rebuild apache with another setting you need to change the 
    # %userdir define in the spec file. 

    # not every user's directory should be visible:
    UserDir disabled root

    # to enable UserDir only for a certain set of users, use this instead:
    #UserDir disabled
    #UserDir enabled user1 user2


    # the UserDir directive is actually used inside the virtual hosts, to 
    # have more control
    #UserDir public_html

    <Directory /home/*/public_html>

        AllowOverride FileInfo AuthConfig Limit Indexes
        Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec

        <Limit GET POST OPTIONS PROPFIND>
            Order allow,deny
            Allow from all
        </Limit>

        <LimitExcept GET POST OPTIONS PROPFIND>
            Order deny,allow
            Deny from all
        </LimitExcept>

    </Directory>

</IfModule>

có - thx để chỉnh sửa
không

tìm thấy tập tin này - xem bài đăng ban đầu
không

Tôi nghĩ rằng nó nên đủ để uncomment #UserDir public_html, sau đó khởi động lại apache. Nhưng tôi không có chuyên gia về điều cụ thể này.
slhck

xin chào - thật tuyệt khi được nghe từ bạn - sẽ cố gắng làm điều đó - lời chào từ châu Âu
số không
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.