Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No version in cfg #1215

Merged
merged 2 commits into from
Jun 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packaging/common/xrootd-filecache-clustered.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ all.role server
# For xrootd, load the proxy plugin and the disk caching plugin.
#
ofs.osslib libXrdPss.so
pss.cachelib libXrdPfc.so
pss.cachelib default

# The server needs to write to disk, stage not relevant
#
Expand Down
2 changes: 1 addition & 1 deletion packaging/common/xrootd-filecache-standalone.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ all.export /test/
# Load the proxy plugin and the disk caching plugin.
#
ofs.osslib libXrdPss.so
pss.cachelib libXrdPfc.so
pss.cachelib default

# Tell the proxy where the data is coming from (arbitrary).
#
Expand Down
2 changes: 1 addition & 1 deletion packaging/common/xrootd-http.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ all.pidpath /var/run/xrootd
# In order to start the xrdhttp.socket run:
# systemctl start xrdhttp@http.socket
#
xrd.protocol XrdHttp:80 /usr/lib64/libXrdHttp-4.so
xrd.protocol XrdHttp:80 /usr/lib64/libXrdHttp.so
# More configuration files can be added in /etc/xrootd/config.d/
# For example /etc/xrootd/config.d/10-mygrid.cfg and
# /etc/xrootd/config.d/98-mysite-specifics.cfg
Expand Down
2 changes: 1 addition & 1 deletion src/XrdHttp/xrootd-http-rdr.cf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


if exec xrootd
xrd.protocol XrdHttp /usr/lib64/libXrdHttp.so.1
xrd.protocol XrdHttp /usr/lib64/libXrdHttp.so
fi

# Regular SSL stuff ... adjust as needed
Expand Down
4 changes: 2 additions & 2 deletions src/XrdHttp/xrootd-http.cf
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@


if exec xrootd
xrd.protocol XrdHttp /usr/local/lib/libXrdHttp-4.so
xrd.protocol XrdHttp /usr/lib64/libXrdHttp.so
fi

http.cert /etc/grid-security/hostcert.pem
http.key /etc/grid-security/hostkey.pem
http.cadir /etc/grid-security/certificates
#http.secretkey CHANGEME
#http.gridmap /etc/grid-security/mapfile
#http.secxtractor /usr/lib64/libXrdHttpVOMS-4.so
#http.secxtractor /usr/lib64/libXrdHttpVOMS.so
#http.selfhttps2http yes

# As an example of preloading files, let's preload in memory
Expand Down